1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-19 22:35:17 +03:00

Better update system adding remove info

This commit is contained in:
Miguel Angel Mulero Martinez 2018-01-02 17:19:02 +01:00
parent 8d87914aeb
commit 69f7af5a96
3 changed files with 44 additions and 9 deletions

View file

@ -340,7 +340,7 @@ gulp.task('debug', ['dist', 'clean-debug'], function (done) {
});
// Create installer package for windows platforms
function releaseWin(arch) {
function release_win(arch) {
// Create the output directory, with write permissions
fs.mkdir(releaseDir, '0775', function(err) {
@ -454,11 +454,11 @@ gulp.task('release', ['apps', 'clean-release'], function () {
}
if (platforms.indexOf('win32') !== -1) {
releaseWin('win32');
release_win('win32');
}
if (platforms.indexOf('win64') !== -1) {
releaseWin('win64');
release_win('win64');
}
});