mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-03 06:41:14 -03:00
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:
committed by
Johannes Altmanninger
parent
12cfe59578
commit
947abd7464
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user