ci: quote $@ in tuned profile scripts (SC2068)
Pre-existing shellcheck failure blocking all PR merges. Standard "double-quote array expansions" fix. No behavior change.
This commit is contained in:
parent
a7e7d6e10c
commit
8506360ad4
3 changed files with 3 additions and 3 deletions
|
|
@ -29,4 +29,4 @@ stop() {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
process $@
|
process "$@"
|
||||||
|
|
|
||||||
|
|
@ -28,4 +28,4 @@ stop() {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
process $@
|
process "$@"
|
||||||
|
|
|
||||||
|
|
@ -40,4 +40,4 @@ stop() {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
process $@
|
process "$@"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue