From 8db6933500f299a9e31d81286a9f2cb404764759 Mon Sep 17 00:00:00 2001 From: Tomas Matus Date: Mon, 31 Jul 2023 15:31:11 +0200 Subject: [PATCH] buildjs: fix rsync flag --- build.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.js b/build.js index 09ec38a7..5ccfcd2e 100755 --- a/build.js +++ b/build.js @@ -34,6 +34,10 @@ parser.add_argument('-e', '--no-eslint', { action: 'store_true', help: "Disable parser.add_argument('-s', '--no-stylelint', { action: 'store_true', help: "Disable stylelint linting", default: lintDefault }); const args = parser.parse_args(); +// bump +if (args.rsync) + process.env.RSYNC = args.rsync; + function notifyEndPlugin() { return { name: 'notify-end',