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:
veilor-org 2026-05-02 04:12:50 +01:00
parent a7e7d6e10c
commit 8506360ad4
3 changed files with 3 additions and 3 deletions

View file

@ -29,4 +29,4 @@ stop() {
return 0 return 0
} }
process $@ process "$@"

View file

@ -28,4 +28,4 @@ stop() {
return 0 return 0
} }
process $@ process "$@"

View file

@ -40,4 +40,4 @@ stop() {
return 0 return 0
} }
process $@ process "$@"