Update SKIP_RELEASE_BUILD to only check for the string "1" (so it has to be exactly "SKIP_RELEASE_BUILD=1" to skip the release build)

Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com>
Upstream-commit: a7ddc9d7e6c14494e7ab3fa80d07b1b371c6ec5b
Component: engine
This commit is contained in:
Tianon Gravi
2017-04-06 11:56:26 -07:00
parent 9863b0c1c9
commit 0827c488f7
+1 -1
View File
@@ -303,7 +303,7 @@ release_index() {
}
main() {
[[ "$SKIP_RELEASE_BUILD" -eq 1 ]] || build_all
[ "$SKIP_RELEASE_BUILD" = '1' ] || build_all
setup_s3
release_binaries
release_index