Skip to content

Commit

Permalink
Normalize target paths in "assembleFiles" for Windows (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgewecke authored Mar 20, 2020
1 parent 67ca4b4 commit 383e43a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/resources/plugin.utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function checkContext(config, tempContractsDir, tempArtifactsDir){

function assembleFiles(config, skipFiles=[]){
const targetsPath = path.join(config.contractsDir, '**', '*.sol');
const targets = shell.ls(targetsPath);
const targets = shell.ls(targetsPath).map(path.normalize);

skipFiles = assembleSkipped(config, targets, skipFiles);

Expand Down

0 comments on commit 383e43a

Please sign in to comment.