Skip to content

Commit

Permalink
fix(cli): proper path resolution to helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
bmuenzenmeyer committed Aug 23, 2019
1 parent 0c02c73 commit a18fe5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/bin/install-edition.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const installEdition = (edition, config, projectDir) => {
);

yield copyAsync(
path.resolve(editionPath, '/helpers/test.js'),
path.join(editionPath, path.sep, 'helpers', path.sep, 'test.js'),
path.resolve(sourceDir, '../', 'helpers/test.js')
);

Expand Down

0 comments on commit a18fe5e

Please sign in to comment.