Determine build environment through command line parameter
All checks were successful
the build was successful

This commit is contained in:
2019-05-28 13:05:11 +02:00
parent c0d73263af
commit 7026808184
6 changed files with 53 additions and 51 deletions

View File

@@ -23,6 +23,9 @@ if [ -z "$inc_arguments" ]; then
-d|--dest|--destination)
[ "$#" -gt 0 ] && shift 1 && target="$1"
;;
--build-env)
[ "$#" -gt 0 ] && shift 1 && build_env="$1"
;;
-h|--help)
command="help"
;;