diff --git a/build-system/scripts/force_deploy_build b/build-system/scripts/force_deploy_build index 3dc59e6abb0..26302eb63b8 100755 --- a/build-system/scripts/force_deploy_build +++ b/build-system/scripts/force_deploy_build @@ -13,7 +13,7 @@ shift # if FORCE_BUILD is already set, just continue with it if [[ $FORCE_BUILD == 'true' ]]; then - build $REPOSITORY true $@ + build $REPOSITORY $FORCE_BUILD $@ exit 0 fi @@ -39,12 +39,12 @@ if [[ -n "${COMMIT_TAG:-}" ]]; then VERSION=$(npx semver $COMMIT_TAG_VERSION) if [ -z "$VERSION" ]; then # Not a version tag, build normally - build $REPOSITORY false $@ + build $REPOSITORY "false" $@ else # Force build - build $REPOSITORY true $@ + build $REPOSITORY "true" $@ fi else # Not a tagged commit, build normally - build $REPOSITORY false $@ + build $REPOSITORY "false" $@ fi