Skip to content

Commit

Permalink
Use venv --always-copy flag only for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesus89 committed Oct 12, 2018
1 parent 3c9c33f commit 7413376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/services/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ angular.module('icestudio')
var command = [this.getPythonExecutable(),
coverPath(nodePath.join(common.VENV_DIR, 'virtualenv.py')),
coverPath(common.ENV_DIR)];
if (!common.DARWIN) {
if (common.WIN32) {
command.push('--always-copy');
}
this.executeCommand(command, callback);
Expand Down

0 comments on commit 7413376

Please sign in to comment.