stdenv: concatStringsSep: quote ${sep}

This commit is contained in:
Someone Serge 2024-08-10 23:38:10 +00:00
parent d7c257035d
commit 64eaa63181

View File

@ -382,7 +382,7 @@ concatStringsSep() {
local IFS="$sep"
echo -n "${nameref[*]}" ;;
*)
echo -n "${nameref// /${sep}}" ;;
echo -n "${nameref// /"${sep}"}" ;;
esac
fi
}