Skip to content

Commit 8a3847a

Browse files
authored
Merge pull request #743 from mikeller/fix_release
Fixed release build script.
2 parents c6c848d + f9d8618 commit 8a3847a

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)