Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
little fix: facts['path'] -> facts['project_path']
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Ivchin committed Dec 30, 2015
1 parent f6a7b6d commit 1dd62b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web_infrastructure/deploy_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,12 +446,12 @@ def main():
changes += deploy_helper.remove_unfinished_file(facts['new_release_path'])
changes += deploy_helper.create_link(facts['new_release_path'], facts['current_path'])
if deploy_helper.clean:
changes += deploy_helper.remove_unfinished_link(facts['path'])
changes += deploy_helper.remove_unfinished_link(facts['project_path'])
changes += deploy_helper.remove_unfinished_builds(facts['releases_path'])
changes += deploy_helper.cleanup(facts['releases_path'], facts['new_release'])

elif deploy_helper.state == 'clean':
changes += deploy_helper.remove_unfinished_link(facts['path'])
changes += deploy_helper.remove_unfinished_link(facts['project_path'])
changes += deploy_helper.remove_unfinished_builds(facts['releases_path'])
changes += deploy_helper.cleanup(facts['releases_path'], facts['new_release'])

Expand Down

0 comments on commit 1dd62b1

Please sign in to comment.