Skip to content

Commit f2775a0

Browse files
authored
Merge pull request #414 from vvoland/ignore-sc2329
Makefile: Ignore SC2329
2 parents 6d9743e + c428d31 commit f2775a0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ VERSION?=
33
CHANNEL?=
44

55
VOLUME_MOUNTS=-v "$(CURDIR)":/v
6-
SHELLCHECK_EXCLUSIONS=$(addprefix -e, SC1091 SC1117 SC2317)
6+
SHELLCHECK_EXCLUSIONS=$(addprefix -e, SC1091 SC1117 SC2317 SC2329)
77
SHELLCHECK=docker run --rm $(VOLUME_MOUNTS) -w /v koalaman/shellcheck:stable $(SHELLCHECK_EXCLUSIONS)
88

99
ENVSUBST_VARS=LOAD_SCRIPT_COMMIT_SHA

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)
178178
version_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),

0 commit comments

Comments
 (0)