diff options
Diffstat (limited to 'src/cpt-build')
-rwxr-xr-x | src/cpt-build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpt-build b/src/cpt-build index d922084..d9d5658 100755 --- a/src/cpt-build +++ b/src/cpt-build @@ -6,10 +6,10 @@ if [ -f ./cpt-lib ]; then . ./cpt-lib; else . cpt-lib; fi parser_definition() { setup REST -- "usage: ${0##*/} [pkg...]" msg -- '' 'Options:' - flag CPT_PROMPT -y --no-prompt on:0 init:"$CPT_PROMPT" -- "Do not prompt for confirmation" - flag CPT_TEST -t --test init:"$CPT_TEST" -- "Run tests (if it exists)" - disp :usage -h --help -- "Show this help message" - disp :version -v --version -- "Print version information" + flag CPT_PROMPT -y --no-prompt on:0 init:="$CPT_PROMPT" -- "Do not prompt for confirmation" + flag CPT_TEST -t --test init:="$CPT_TEST" -- "Run tests (if it exists)" + disp :usage -h --help -- "Show this help message" + disp :version -v --version -- "Print version information" } eval "$(getoptions parser_definition parse "$0")" |