From acecaa1ecd52af8b028a671b8933c47c8018d4ec Mon Sep 17 00:00:00 2001
From: "(quasar) nebula" <qznebula@protonmail.com>
Date: Mon, 16 Jan 2023 18:14:13 -0400
Subject: Error on unknown CLI arguments

---
 src/upd8.js | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

(limited to 'src')

diff --git a/src/upd8.js b/src/upd8.js
index 21413a17..cb6c559a 100755
--- a/src/upd8.js
+++ b/src/upd8.js
@@ -101,10 +101,12 @@ async function main() {
 
   const selectedBuildModeFlags = Object.keys(
     await parseOptions(process.argv.slice(2), {
+      // Ignore unknown options for now - we'll handle and error them later.
       [parseOptions.handleUnknown]: () => {},
 
-      ...Object.fromEntries(Object.keys(buildModes)
-        .map((key) => [key, {type: 'flag'}])),
+      ...Object.fromEntries(
+        Object.keys(buildModes)
+          .map((key) => [key, {type: 'flag'}])),
     }));
 
   let selectedBuildModeFlag;
@@ -130,6 +132,13 @@ async function main() {
   };
 
   const cliOptions = await parseOptions(process.argv.slice(2), {
+    // We don't want to error when we receive these options, so specify them
+    // here, even though we won't be doing anything with them later.
+    // (This is a bit of a hack.)
+    ...Object.fromEntries(
+      Object.keys(buildModes)
+        .map((key) => [key, {type: 'flag'}])),
+
     ...selectedBuildMode.getCLIOptions(),
 
     // Data files for the site, including flash, artist, and al8um data,
@@ -217,8 +226,6 @@ async function main() {
     'precache-data': {
       type: 'flag',
     },
-
-    [parseOptions.handleUnknown]: () => {},
   });
 
   const dataPath = cliOptions['data-path'] || process.env.HSMUSIC_DATA;
-- 
cgit 1.3.0-6-gf8a5