Skip to content

Commit 13aa438

Browse files
committed
Make update-package to run sync before dist tasks
1 parent 5bfcc86 commit 13aa438

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

gulp-tasks/dist-darwin.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function darwinDist(gulp) {
6565
});
6666

6767
gulp.task('dist', function(){
68-
return runSequence('clean','dist-simple','dist-bundle','cleanup');
68+
return runSequence('clean','update-package','dist-simple','dist-bundle','cleanup');
6969
});
7070

7171
gulp.task('update-package',['update-requirements'], function() {
@@ -80,7 +80,7 @@ function darwinDist(gulp) {
8080
});
8181
});
8282

83-
gulp.task('dist-bundle', ['prefetch','update-package'], function() {
83+
gulp.task('dist-bundle', ['prefetch'], function() {
8484
return buildInstaller(gulp,
8585
`dist/mac/${productName}-${productVersion}-mac.zip`,
8686
`dist/devsuite-${productVersion}-bundle-installer-mac.zip`,
@@ -91,7 +91,7 @@ function darwinDist(gulp) {
9191
}]);
9292
});
9393

94-
gulp.task('dist-simple', ['update-package'], function() {
94+
gulp.task('dist-simple', function() {
9595
return buildInstaller(gulp,
9696
`dist/mac/${productName}-${productVersion}-mac.zip`,
9797
`dist/devsuite-${productVersion}-installer-mac.zip`

0 commit comments

Comments
 (0)