소스 검색

Moved short flag for local js to `j`

Andrew Collington 3 년 전
부모
커밋
ab7a30169c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      build/build.php

+ 2 - 2
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')) {