Add deployment-scripts to shellcheck

Was missing from the wildcard
This commit is contained in:
Ole Christian Langfjæran
2019-01-10 12:29:08 +01:00
parent 3e74af75c8
commit 1d96a59540
5 changed files with 6 additions and 6 deletions

View File

@@ -4,8 +4,8 @@ BASEDIR=$(dirname "$0")
sh -c "$*"
RESULT=$?
if [[ 0 != "${RESULT}" ]];then
if [ 0 != "${RESULT}" ];then
echo "Failed '$*'! Exit code '${RESULT}' is not equal to 0"
${BASEDIR}/deployment-create-status error
"${BASEDIR}"/deployment-create-status error
exit ${RESULT}
fi