Skip to content

Commit

Permalink
Fix migrating from devel version to devel version (#1890)
Browse files Browse the repository at this point in the history
upgrading from devel version to devel version currently don't run migration because we chopped off the git sha
  • Loading branch information
TheRealHaoLiu authored Jun 5, 2024
1 parent 9fa46be commit a260ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/installer/tasks/migrate_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

- name: Sanitize instance version
set_fact:
version: "{{ version_check.stdout.split('+')[0] | trim }}"
version: "{{ version_check.stdout | replace('+', '-') | trim }}"

# It is possible to do a wait on this task to create the job and wait
# until it completes. Unfortunately, if the job doesn't wait finish within
Expand Down

0 comments on commit a260ab6

Please sign in to comment.