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

github.com/thsmi/sieve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmid <schmid-thomas@gmx.net>2022-05-23 21:52:08 +0300
committerThomas Schmid <schmid-thomas@gmx.net>2022-05-23 21:52:08 +0300
commit19a4dbc4e4186c64e7604dd4174e1312209d81bc (patch)
tree015a12564fa3bdd04d2d2060fbf3e3b2a0bbce68
parentbf6f3a6ca35ae8ad4614be2bc775785934ef7259 (diff)
Fix build script
-rw-r--r--gulp/gulpfile.app.mjs3
1 files changed, 2 insertions, 1 deletions
diff --git a/gulp/gulpfile.app.mjs b/gulp/gulpfile.app.mjs
index cbcabd83..1b541deb 100644
--- a/gulp/gulpfile.app.mjs
+++ b/gulp/gulpfile.app.mjs
@@ -334,7 +334,8 @@ async function packageAppImage() {
throw new Error("Could not load app image tool releases.");
releases = releases
- .filter((a) => { return (a.tag_name.toLowerCase() !== "continuous"); });
+ .filter((a) => { return (a.tag_name.toLowerCase() !== "continuous"); })
+ .filter((a) => { return (a.prerelease !== true); });
if (!releases)
throw new Error("Could not detect latest app image tool version.");