Skip to content

Commit

Permalink
Fix broken deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
cnorthwood committed Jul 12, 2011
1 parent b19dc8b commit 5aa4c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion molly/installer/deploy.py
Expand Up @@ -54,7 +54,7 @@ def deploy(venv, site_path, development=False, listen_externally=False,
# Okay, now install Molly # Okay, now install Molly
print "Installing Molly...", print "Installing Molly...",
sys.stdout.flush() sys.stdout.flush()
molly_setup = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..', 'setup.py') molly_setup = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..', '..', 'setup.py')
if development: if development:
venv('python %s develop' % molly_setup) venv('python %s develop' % molly_setup)
else: else:
Expand Down

0 comments on commit 5aa4c39

Please sign in to comment.