Compare commits

...

1 commit

Author SHA1 Message Date
veilor-org
8506360ad4 ci: quote $@ in tuned profile scripts (SC2068)
Pre-existing shellcheck failure blocking all PR merges. Standard
"double-quote array expansions" fix. No behavior change.
2026-05-02 04:12:50 +01:00
3 changed files with 3 additions and 3 deletions

View file

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

View file

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

View file

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