Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto García Hierro <alberto@garciahierro.com>2017-09-10 13:52:18 +0300
committerAlberto García Hierro <alberto@garciahierro.com>2017-09-10 13:52:18 +0300
commit4339bc0604f0198a71137ebc0fbff05bd14f9318 (patch)
tree039d625b07b37bddbae673e30f224b2735825f92 /gulpfile.js
parent36f28b494442b302a9ec00cfbec9560f62573552 (diff)
Add missing 'release-windows' step to 'release' task
It won't build the Windows release by default otherwise. Missed accidentally in #235.
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index ad1e9557..856f2113 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -265,7 +265,7 @@ gulp.task('release-macos', function() {
// Create distributable .zip files in ./apps
gulp.task('release', function() {
// TODO: Linux
- return runSequence('apps', 'release-macos');
+ return runSequence('apps', 'release-macos', 'release-windows');
});
gulp.task('watch', function () {