cleanup: quote shell variables

This is not a functional change, since the variable names don't have
spaces, but it is more robust to changes and removes ShellCheck warnings

Part of #12636
This commit is contained in:
Daniel Rainer
2026-04-15 02:26:25 +02:00
committed by Johannes Altmanninger
parent 12cfe59578
commit 947abd7464

View File

@@ -132,11 +132,11 @@ system_tests() (
if $is_cygwin; then
# shellcheck disable=2059
printf "=== Running ${green}integration tests ${yellow}with${green} symlinks${reset}\n"
system_tests $cygwin_var=winsymlinks
system_tests "$cygwin_var"=winsymlinks
# shellcheck disable=2059
printf "=== Running ${green}integration tests ${yellow}without${green} symlinks${reset}\n"
system_tests $cygwin_var=winsymlinks
system_tests "$cygwin_var"=winsymlinks
else
# shellcheck disable=2059
printf "=== Running ${green}integration tests${reset}\n"