wrapFish: fix early variable expansion

the bash script will retrieve the $var and cause the variable expand to empty
add \ to prevent this, and let fish command to retrieve the variable

sheeaza 30d581b2 8652402a

+1 -1
+1 -1
pkgs/shells/fish/wrapper.nix
··· 20 20 set --prepend fish_complete_path ${escapeShellArgs complPath} 21 21 set --prepend fish_function_path ${escapeShellArgs funcPath} 22 22 set --local fish_conf_source_path ${escapeShellArgs confPath} 23 - for c in $fish_conf_source_path/*; source $c; end 23 + for c in \$fish_conf_source_path/*; source \$c; end 24 24 " "$@" 25 25 '')