Skip to content

Commit

Permalink
fix: the URL passed with the --release option is not used (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
skanehira authored Aug 19, 2022
1 parent 84a5dd7 commit 4688c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function generate() {
}

const pkgName = conf.name;
const fetchPrefix = join(
const fetchPrefix = release ? flags.release : join(
await findRelativeTarget(),
"../target",
release ? "release" : "debug",
Expand Down

0 comments on commit 4688c00

Please sign in to comment.