Skip to content

Commit

Permalink
fix env command on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Idan Levin committed Nov 13, 2017
1 parent 4cd9ed1 commit b5a4dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion env.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Promise.resolve()
const peerDeps = adapterJson.peerDependencies;
const installs = Object.keys(peerDeps)
.filter(key => !key.startsWith('enzyme'))
.map(key => `${key}@'${peerDeps[key]}'`)
.map(key => `${key}@"${peerDeps[key]}"`)
.join(' ');

testJson.dependencies[adapterName] = adapterJson.version;
Expand Down

0 comments on commit b5a4dde

Please sign in to comment.