aboutsummaryrefslogtreecommitdiff
path: root/dev/bin/build.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-11-29 20:31:02 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-11-29 20:31:02 -0500
commitfd8be74abfd8ed46f984a5d0b70adcc8c641b617 (patch)
tree3f9024a3afbeeb6c59ac5be1eddb1a869eab53b6 /dev/bin/build.js
parent59685d00ca5b2e6f7378280f9bbe6af2aeed404f (diff)
Update types
Diffstat (limited to 'dev/bin/build.js')
-rw-r--r--dev/bin/build.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/bin/build.js b/dev/bin/build.js
index c5814dd3..47c08f3c 100644
--- a/dev/bin/build.js
+++ b/dev/bin/build.js
@@ -254,7 +254,7 @@ export async function main(argv) {
await build(buildDir, extDir, manifestUtil, variantNames, manifestPath, dryRun, dryRunBuildZip, yomitanVersion);
} finally {
// Restore manifest
- const manifestName = (!args.get('default') && args.get('manifest') !== null) ? args.get('manifest') : null;
+ const manifestName = /** @type {?string} */ ((!args.get('default') && args.get('manifest') !== null) ? args.get('manifest') : null);
const restoreManifest = manifestUtil.getManifest(manifestName);
process.stdout.write('Restoring manifest...\n');
if (!dryRun) {