Skip to content

Commit

Permalink
fix: expand {{}} in cmd-line args
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Feb 26, 2019
1 parent 5eb9575 commit 23f7b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/npm-pkgbuild-cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ program
program.package = process.cwd();
}
const staging = program.staging === undefined ? "build" : program.staging;
const target = program.target;
let target = program.target;

await fs.promises.mkdir(staging, { recursive: true });

Expand Down

0 comments on commit 23f7b9f

Please sign in to comment.