Browse code

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>

Tianon Gravi authored on 2017/04/07 03:56:26
Showing 1 changed files
... ...
@@ -303,7 +303,7 @@ release_index() {
303 303
 }
304 304
 
305 305
 main() {
306
-	[[ "$SKIP_RELEASE_BUILD" -eq 1 ]] || build_all
306
+	[ "$SKIP_RELEASE_BUILD" = '1' ] || build_all
307 307
 	setup_s3
308 308
 	release_binaries
309 309
 	release_index