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:
authorErnest Stepanov (ErNis) <ernis@fpvdev.com>2022-08-15 23:27:20 +0300
committerErnest Stepanov (ErNis) <ernis@fpvdev.com>2022-08-15 23:27:20 +0300
commitfa065ebfab465c037e80996c794f983bb6fd66c5 (patch)
treea4431fad9acca8a7d2f1e73e2d522e4c8cc6b0e7 /gulpfile.js
parent6beaeb1909267bdda0b3dee92f290910f2be98dc (diff)
non-installer linux build fix
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 7e3fa2a1..6abd30f7 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -588,6 +588,10 @@ function release_deb(arch) {
function post_release_deb(arch) {
return function post_release_linux_deb(done) {
+ if (!getArguments().installer) {
+ done();
+ return null;
+ }
if ((arch === 'linux32') || (arch === 'linux64')) {
var rename = require("gulp-rename");
const metadata = require('./package.json');