forge/.husky/pre-push

10 строки
193 B
Bash
Executable File

#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
BRANCH=`git rev-parse --abbrev-ref HEAD`
PROTECTED_BRANCH="main"
if [ "$BRANCH" = $PROTECTED_BRANCH ]; then
node .husky/pre-push.js < /dev/tty
fi