ci: quote $@ in tuned profile scripts (SC2068) (#10)
Pre-existing shellcheck failure blocking all PR merges. Standard "double-quote array expansions" fix. No behavior change. Co-authored-by: veilor-org <admin@veilor.org> Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
6ca9302a33
commit
3e715b64f5
3 changed files with 3 additions and 3 deletions
|
|
@ -29,4 +29,4 @@ stop() {
|
|||
return 0
|
||||
}
|
||||
|
||||
process $@
|
||||
process "$@"
|
||||
|
|
|
|||
|
|
@ -28,4 +28,4 @@ stop() {
|
|||
return 0
|
||||
}
|
||||
|
||||
process $@
|
||||
process "$@"
|
||||
|
|
|
|||
|
|
@ -40,4 +40,4 @@ stop() {
|
|||
return 0
|
||||
}
|
||||
|
||||
process $@
|
||||
process "$@"
|
||||
|
|
|
|||
Loading…
Reference in a new issue