Skip to content

Commit

Permalink
dotnet/update.sh: fix error when output path contains spaces
Browse files Browse the repository at this point in the history
Fixes: #367413
  • Loading branch information
corngood committed Dec 22, 2024
1 parent c41a19e commit 8b58900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/compilers/dotnet/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ update() {
if [ "$patch_specified" == false ] && [ -f "$output" ]; then
local -a versions
IFS= readarray -d '' versions < <(
nix-instantiate --eval --json -E "with (import $output {
nix-instantiate --eval --json -E "with (import \"$output\" {
buildAspNetCore = { ... }: {};
buildNetSdk = { version, ... }: { inherit version; };
buildNetRuntime = { version, ... }: { inherit version; };
Expand Down

0 comments on commit 8b58900

Please sign in to comment.