Skip to content

Commit

Permalink
stdenv: concatStringsSep: quote ${sep}
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeoneSerge committed Aug 10, 2024
1 parent d7c2570 commit 64eaa63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/stdenv/generic/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ concatStringsSep() {
local IFS="$sep"
echo -n "${nameref[*]}" ;;
*)
echo -n "${nameref// /${sep}}" ;;
echo -n "${nameref// /"${sep}"}" ;;
esac
fi
}
Expand Down

0 comments on commit 64eaa63

Please sign in to comment.