Skip to content

Commit

Permalink
fix(maker-wix): correct path to distributable
Browse files Browse the repository at this point in the history
  • Loading branch information
liudonghua123 authored and malept committed Nov 17, 2018
1 parent 9adca97 commit 5eee34f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/maker/wix/src/MakerWix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default class MakerWix extends MakerBase<MakerWixConfig> {
packageJSON,
appName,
}: MakerOptions) {
const outPath = path.resolve(makeDir, `/wix/${targetArch}`);
const outPath = path.resolve(makeDir, `wix/${targetArch}`);
await this.ensureDirectory(outPath);

const creator = new MSICreator(Object.assign({
Expand Down

0 comments on commit 5eee34f

Please sign in to comment.