Skip to content

Commit

Permalink
Change webpack config to use 'cp -aRv' with uppercase R - avoid error…
Browse files Browse the repository at this point in the history
… on MacOS.
  • Loading branch information
normangilmore committed Oct 27, 2017
1 parent ec960ea commit a065d07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack/base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ if (process.env.CLEANDIST) {
}),
new OnBuildPlugin(function () {
// copy files from the 'app/staticroot/' dir
execCmd(`cp -arv ${PATHS.app}/staticroot/* ${PATHS.dist}`); // */
execCmd(`cp -aRv ${PATHS.app}/staticroot/* ${PATHS.dist}`); // */
console.log('\n');
})
)
Expand Down

0 comments on commit a065d07

Please sign in to comment.