AFFiNE/.husky/pre-push
2022-08-15 16:51:49 +08:00

15 lines
352 B
Bash
Executable File

#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
# Show just the current branch in Git
# See https://stackoverflow.com/questions/1417957/show-just-the-current-branch-in-git/1418022#1418022
current_branch=$(git rev-parse --abbrev-ref HEAD)
default_branch="master"
if test $current_branch != $default_branch; then
exit 0
fi
pnpm run build:check