Skip to content

Commit

Permalink
Fixed typo in virtualenv check.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfarrell-vz committed Oct 20, 2014
1 parent 037290f commit 67ee18d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy_tools/fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def _update_settings(source_folder, site_name):

def _update_virtualenv(source_folder):
virtualenv_folder = source_folder + '/../virtualenv'
if not exists(virtualenv_folder + 'bin/pip'):
if not exists(virtualenv_folder + '/bin/pip'):
run('virtualenv --python=python3 %s' % (virtualenv_folder,))
run('%s/bin/pip install -r %s/requirements.txt' % (
virtualenv_folder, source_folder
Expand Down

0 comments on commit 67ee18d

Please sign in to comment.