Add --quick option to mfqp, add BRANCH check to mfinfo

This commit is contained in:
Scott Lahteine
2019-02-02 14:03:10 -06:00
parent c3cb449990
commit 6fe39e6117
2 changed files with 20 additions and 6 deletions

View File

@ -12,9 +12,6 @@
# - Current Branch
#
# usage() { echo "usage: `basename $0` [1|2] [branch]" 1>&2 ; }
# [[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { usage; exit 1; }
CURR=$(git branch 2>/dev/null | grep ^* | sed 's/\* //g')
[[ -z $CURR ]] && { echo "No git repository here!" 1>&2 ; exit 1; }
[[ $CURR == "(no"* ]] && { echo "Git is busy with merge, rebase, etc." 1>&2 ; exit 1; }
@ -56,4 +53,8 @@ case "$REPO" in
MarlinDocumentation ) TARG=master ;;
esac
[[ $BRANCH =~ ^[0-9]$ ]] && USAGE=1
[[ $USAGE ]] && { echo "usage: `basename $0` [1|2] [branch]" 1>&2 ; exit 1 ; }
echo "$ORG $FORK $REPO $TARG $BRANCH $CURR $MORE"