Skip to content

Commit

Permalink
Merge pull request #176 from Hysterelius/master
Browse files Browse the repository at this point in the history
Fix bug in package_abridge.js
  • Loading branch information
Jieiku authored Jun 29, 2024
2 parents dfa4012 + b5f911c commit 38c9504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package_abridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const pwa_BASE_CACHE_FILES = data.extra.pwa_BASE_CACHE_FILES;

// This is used to pass arguments to zola via npm, for example:
// npm run abridge -- "--base-url https://abridge.pages.dev"
const args = (' '+process.argv[2] || '');
const args = process.argv[2] ? ' '+process.argv[2] : '';

async function execWrapper(cmd) {
const { stdout, stderr } = await execPromise(cmd);
Expand Down

0 comments on commit 38c9504

Please sign in to comment.