Skip to content

Commit

Permalink
update - fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
superstes committed Oct 27, 2021
1 parent b9b89ab commit 9d5b690
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions setup/roles/update/tasks/do.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
loop_control:
loop_var: venv
with_items:
- {path: "{{ ga_update_path_home_core }}/venv", remove: "{{ ga_remove_core_venv }}"}
- {path: "{{ ga_update_path_home_web }}/venv", remove: "{{ ga_remove_web_venv }}"}
- {path: "{{ ga_update_path_home_core }}/venv", remove: "{{ ga_remove_core_venv | default(false) }}"}
- {path: "{{ ga_update_path_home_web }}/venv", remove: "{{ ga_remove_web_venv | default(false) }}"}
ignore_errors: true
register: update_remove_venv

Expand Down
8 changes: 4 additions & 4 deletions setup/roles/update/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
msg:
- '########################################'
- '########################################'
- 'Preparing for Update!'
- '######### Preparing for Update #########'
- '########################################'
- '########################################'

Expand All @@ -25,7 +25,7 @@
msg:
- '########################################'
- '########################################'
- "GrowAutomation will now be upgraded to version {{ ga_update_release_now }} - '{{ ga_update_commit_now }}'!"
- "GrowAutomation will now be upgraded to version {{ ga_update_release_now }} - {{ ga_update_commit_now }}"
- '########################################'
- '########################################'

Expand Down Expand Up @@ -79,7 +79,7 @@
msg:
- '########################################'
- '########################################'
- "GrowAutomation was successfully updated to version {{ ga_update_release_now }} - '{{ ga_update_commit_now }}'!"
- "GrowAutomation was successfully updated to version {{ ga_update_release_now }} - {{ ga_update_commit_now }}"
- '########################################'
- '########################################'
when: not ga_update_failed
Expand All @@ -88,7 +88,7 @@
msg:
- '########################################'
- '########################################'
- "GrowAutomation update to version {{ ga_update_release_now }} - '{{ ga_update_commit_now }}' FAILED!"
- "GrowAutomation update to version {{ ga_update_release_now }} - {{ ga_update_commit_now }} FAILED"
- '########################################'
- '########################################'
when: ga_update_failed

0 comments on commit 9d5b690

Please sign in to comment.