Skip to content

Commit

Permalink
Fix migrating from devel version to devel version
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 committed Jun 4, 2024
1 parent 8ead140 commit 69ca0b3
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 69ca0b3

Please sign in to comment.