Improve existing git helper scripts

This commit is contained in:
Scott Lahteine
2017-04-20 21:24:43 -05:00
parent 06f4776be4
commit 7b4c245de3
6 changed files with 16 additions and 24 deletions

View File

@ -8,11 +8,6 @@
MFINFO=$(mfinfo) || exit
IFS=' ' read -a INFO <<< "$MFINFO"
if [[ ${INFO[4]} == "(no" ]]; then
echo "Branch is unavailable!"
exit 1
fi
case "$#" in
0 ) ;;
* ) echo "Usage: `basename $0`" 1>&2 ; exit 1 ;;