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:
s8n 2026-05-02 04:17:22 +01:00 committed by GitHub
parent b4b5d7c007
commit 2d6f6b07f6
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 "$@"