From ab7a30169c4f32b1df2b3abd6fa477000f6411f0 Mon Sep 17 00:00:00 2001 From: Andrew Collington Date: Sun, 17 Jul 2022 22:21:38 +0100 Subject: [PATCH] Moved short flag for local js to `j` --- build/build.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build.php b/build/build.php index 4d130c6..6fe4990 100644 --- a/build/build.php +++ b/build/build.php @@ -9,8 +9,8 @@ * @license MIT, https://acollington.mit-license.org/ */ -$options = getopt('l', ['local-js']); -$makeJsLocal = (isset($options['l']) || isset($options['local-js'])); +$options = getopt('j', ['local-js']); +$makeJsLocal = (isset($options['j']) || isset($options['local-js'])); $parentPath = dirname(__DIR__); if (!file_exists($parentPath . '/node_modules')) {