Enhance github helper scripts (#9887)

This commit is contained in:
Scott Lahteine
2018-03-01 20:40:53 -06:00
committed by GitHub
parent cd4c35c543
commit 63b13588a8
11 changed files with 34 additions and 21 deletions

View File

@@ -9,7 +9,7 @@ usage() {
echo "Usage: `basename $0` [1|2] [name]" 1>&2
}
[[ $# < 3 ]] || { usage ; exit 1 ; }
[[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { usage; exit 1; }
MFINFO=$(mfinfo "$@") || exit 1
IFS=' ' read -a INFO <<< "$MFINFO"