Skip to content

Commit 6a08a54

Browse files
committed
Fix #12: removed virtualenv dir per site feature.
1 parent 4b5755d commit 6a08a54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
shell: "source ~/.bash_profile && mkvirtualenv {{ project }} --python={{ python }} --no-site-packages"
2222
args:
2323
executable: /bin/bash
24-
creates: "{{ conf.virtualenv_dir | default(virtualenv_dir) }}/{{ project }}"
24+
creates: "{{ virtualenv_dir }}/{{ project }}"
2525
register: mkvirtualenv
2626
failed_when: 'mkvirtualenv.changed and "New python executable" not in mkvirtualenv.stdout'
2727

0 commit comments

Comments
 (0)