Skip to content

Commit f9d8618

Browse files
committed
Fixed release build script.
1 parent c6c848d commit f9d8618

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

gulpfile.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,9 +342,13 @@ gulp.task('release', ['apps', 'clean-release'], function () {
342342

343343
if (platforms.indexOf('linux64') !== -1) {
344344
release_linux64();
345-
} else if (platforms.indexOf('osx64') !== -1) {
345+
}
346+
347+
if (platforms.indexOf('osx64') !== -1) {
346348
release_osx64();
347-
} else if (platforms.indexOf('win32') !== -1) {
349+
}
350+
351+
if (platforms.indexOf('win32') !== -1) {
348352
release_win32();
349353
}
350354
});

0 commit comments

Comments
 (0)