summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2017-08-22 10:05:40 -0300
committerRenato Botelho <renato@netgate.com>2017-08-22 10:11:04 -0300
commit69f77f55dba10141db7240baffcf12b387c2f9a8 (patch)
treecf85b37c50846b631496cf5dfca6d6949bb99440
parentdd90320c41289d1bc9afbe4aa98cecd42cc0c470 (diff)
downloadpfsense-69f77f55dba10141db7240baffcf12b387c2f9a8.zip
pfsense-69f77f55dba10141db7240baffcf12b387c2f9a8.tar.gz
Remove quotes from commands
-rwxr-xr-xtools/build_snapshots.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/build_snapshots.sh b/tools/build_snapshots.sh
index 46ef1cf..70bf625 100755
--- a/tools/build_snapshots.sh
+++ b/tools/build_snapshots.sh
@@ -216,20 +216,20 @@ while [ /bin/true ]; do
"
if [ -n "${POUDRIERE_SNAPSHOTS}" ]; then
exec_and_update_status \
- "${BUILDER_ROOT}/build.sh --update-poudriere-ports" \
+ ${BUILDER_ROOT}/build.sh --update-poudriere-ports \
|| exit $?
exec_and_update_status \
- "${BUILDER_ROOT}/build.sh ${NO_UPLOAD} --update-pkg-repo" \
+ ${BUILDER_ROOT}/build.sh ${NO_UPLOAD} --update-pkg-repo \
|| exit $?
else
exec_and_update_status \
- "${BUILDER_ROOT}/build.sh --clean-builder" \
+ ${BUILDER_ROOT}/build.sh --clean-builder \
|| exit $?
exec_and_update_status \
- "${BUILDER_ROOT}/build.sh ${NO_UPLOAD} --flash-size '2g 4g' " \
- "--snapshots ${NO_IMAGES}" \
+ ${BUILDER_ROOT}/build.sh ${NO_UPLOAD} --flash-size '2g 4g' \
+ --snapshots ${NO_IMAGES} \
|| exit $?
fi
IFS=${OIFS}
OpenPOWER on IntegriCloud