Fixing opt arguments

This commit is contained in:
ViViDboarder 2017-07-16 19:37:16 -07:00
parent 69b2ce781d
commit ccd2cb4145
1 changed files with 7 additions and 3 deletions

View File

@ -1,15 +1,19 @@
#! /bin/bash
export OPT_ARGUMENTS="$@"
# If first arg is bash, we'll just execute directly
if [ "$1" == "bash" ]; then
exec "$@"
exit 0
fi
# If no env variable set, get from command line
if [ "$OPT_ARGUMENTS" == "" ]; then
export OPT_ARGUMENTS="$@"
fi
# If key id is provied add arg
if [ -e "$GPG_KEY_ID" ]; then
OPT_ARGUMENTS="$OPT_ARGUMENTS --encrypt-sign-key=\"$GPG_KEY_ID\""
export OPT_ARGUMENTS="$OPT_ARGUMENTS --encrypt-sign-key=\"$GPG_KEY_ID\""
fi
if [ "$SKIP_ON_START" != "true" ]; then