We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24c2f1f commit 0c64340Copy full SHA for 0c64340
generate-stackbrew-library.sh
@@ -67,7 +67,7 @@ latest="$(curl -fsSL 'https://www.phpmyadmin.net/home_page/version.json' | jq -r
67
68
for variant in apache fpm fpm-alpine; do
69
commit="$(dirCommit "$variant")"
70
- fullversion="$(git show "$commit":"$variant/Dockerfile" | awk '$1 == "ENV" && $2 == "VERSION" { print $3; exit }')"
+ fullversion="$(git show "$commit":"$variant/Dockerfile" | awk -F" |=" '$1 == "ENV" && $2 == "VERSION" { print $3; exit }')"
71
72
versionAliases=( "$fullversion" "${fullversion%.*}" "${fullversion%.*.*}" )
73
if [ "$fullversion" = "$latest" ]; then
0 commit comments