File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ VERSION?=
33CHANNEL? =
44
55VOLUME_MOUNTS =-v "$(CURDIR ) ":/v
6- SHELLCHECK_EXCLUSIONS =$(addprefix -e, SC1091 SC1117 SC2317)
6+ SHELLCHECK_EXCLUSIONS =$(addprefix -e, SC1091 SC1117 SC2317 SC2329 )
77SHELLCHECK =docker run --rm $(VOLUME_MOUNTS ) -w /v koalaman/shellcheck:stable $(SHELLCHECK_EXCLUSIONS )
88
99ENVSUBST_VARS =LOAD_SCRIPT_COMMIT_SHA
Original file line number Diff line number Diff line change @@ -174,12 +174,12 @@ command_exists() {
174174# version_gte 23.0 // 0 (success)
175175# version_gte 20.10 // 0 (success)
176176# version_gte 19.03 // 0 (success)
177- # version_gte 21.10 // 1 (fail)
177+ # version_gte 26.1 // 1 (fail)
178178version_gte () {
179179 if [ -z " $VERSION " ]; then
180180 return 0
181181 fi
182- eval version_compare " $VERSION " " $1 "
182+ version_compare " $VERSION " " $1 "
183183}
184184
185185# version_compare compares two version strings (either SemVer (Major.Minor.Path),
You can’t perform that action at this time.
0 commit comments