IMP(shellcheck): use $@ insetad of $* (SC2048)

This commit is contained in:
Thibault Ayanides 2020-12-14 13:58:50 +01:00
parent db27cfc39c
commit 2ab1bd50dc

View File

@ -100,11 +100,11 @@ has_file_correct_permissions() {
}
does_pattern_exist_in_file_nocase() {
_does_pattern_exist_in_file "-Ei" $*
_does_pattern_exist_in_file "-Ei" "$@"
}
does_pattern_exist_in_file() {
_does_pattern_exist_in_file "-E" $*
_does_pattern_exist_in_file "-E" "$@"
}
_does_pattern_exist_in_file() {