Skip to content
Snippets Groups Projects
Commit e068c02c authored by Arie Peterson's avatar Arie Peterson
Browse files

Fixed quoting in check for installed app version

parent d5210e86
No related branches found
No related tags found
1 merge request!577Resolve "setup-apps always installs all apps"
Pipeline #46258 passed with stages
in 7 minutes and 17 seconds
......@@ -108,7 +108,7 @@ data:
desired_version=$(echo "{{ .version }}" | sed 's/^v//')
if [[ $app_versions =~ '"{{ .name }}":"$desired_version"' ]]
if [[ $app_versions =~ '"{{ .name }}":"'"$desired_version"'"' ]]
then
echo "Pinned app {{ .name }} is up-to-date at version {{ .version }}"
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment