Skip to content

Commit

Permalink
Merge 201956f into ebfb22d
Browse files Browse the repository at this point in the history
  • Loading branch information
Hedde committed Mar 8, 2014
2 parents ebfb22d + 201956f commit 8651205
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fabric_bolt/projects/views.py
Expand Up @@ -362,7 +362,9 @@ class DeploymentOutputStream(View):
"""

def build_command(self):
command = ['fab', self.object.task.name, '--abort-on-prompts']
command = [getattr(settings, 'VENV_PATH', '') + 'fab ' + '-f {} '.format(
settings.FABFILE_PATH
) + self.object.task.name + ' --abort-on-prompts']

hosts = self.object.stage.hosts.values_list('name', flat=True)
if hosts:
Expand Down

0 comments on commit 8651205

Please sign in to comment.