Skip to content

Commit

Permalink
add shorter no-webapps alias
Browse files Browse the repository at this point in the history
  • Loading branch information
riknoll committed Oct 5, 2023
1 parent 28852f6 commit 0aafd25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ const kiosk = gulp.series(cleanKiosk, buildKiosk, gulp.series(copyKioskCss, copy
Webapp build wrappers
*********************************************************/

const shouldBuildWebapps = () => (process.argv.indexOf("--no-webapps") === -1);
const shouldBuildWebapps = () => (process.argv.indexOf("--no-webapps") === -1 && process.argv.indexOf("-n") === -1);

const maybeUpdateWebappStrings = () => {
if (!shouldBuildWebapps()) return noop;
Expand Down

0 comments on commit 0aafd25

Please sign in to comment.