mirror of https://github.com/aredn/aredn.git
bugfix: Fix issue with argument processing on in BuildImage.sh
This commit is contained in:
parent
d188fc7551
commit
98d9fe02c1
|
@ -27,7 +27,7 @@ AUSTINBUILD=false
|
|||
while getopts "v:a:d:f" flag; do
|
||||
case "$flag" in
|
||||
v) REQVERSION=$OPTARG;;
|
||||
a) AUSTINBUILD=TRUE;;
|
||||
a) AUSTINBUILD=true;;
|
||||
d) DESTINATION=$OPTARG;;
|
||||
f) FILESDIR=$OPTARG;;
|
||||
esac
|
||||
|
@ -47,7 +47,7 @@ fi
|
|||
|
||||
|
||||
# If not an Austin build we can set the version and go direct, otherwise we need to do some prepwork on the files.
|
||||
if [ ! $AUSTINBUILD ]
|
||||
if ! $AUSTINBUILD
|
||||
then
|
||||
VERSION=$REQVERSION
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue