From ffcf6b781e9bb18ceb86e0f836a8adb53c2d7c30 Mon Sep 17 00:00:00 2001 From: GGG Date: Thu, 19 Dec 2024 11:18:24 -0300 Subject: [PATCH] addNugetDeps.fetch-deps: remove `set -u` It was causing issues with other hooks and things used in the build for packages so I opted to remove it as it wasn't there to start with. --- pkgs/build-support/dotnet/add-nuget-deps/fetch-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/dotnet/add-nuget-deps/fetch-deps.sh b/pkgs/build-support/dotnet/add-nuget-deps/fetch-deps.sh index 809f5c4b26d8..9bef944b4bd7 100644 --- a/pkgs/build-support/dotnet/add-nuget-deps/fetch-deps.sh +++ b/pkgs/build-support/dotnet/add-nuget-deps/fetch-deps.sh @@ -1,5 +1,5 @@ # shellcheck shell=bash -set -euo pipefail +set -e export PATH="@binPath@:$PATH"