From c01d8e1c55956221ef45fc43d4fe161bd5782534 Mon Sep 17 00:00:00 2001 From: Thomas Hobson Date: Sat, 20 Mar 2021 15:19:41 +1300 Subject: [PATCH] pkg(dotnet-5.0.201): call the correect dotnet binary --- packages/dotnet/5.0.201/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dotnet/5.0.201/build.sh b/packages/dotnet/5.0.201/build.sh index 9093a3a..c685668 100644 --- a/packages/dotnet/5.0.201/build.sh +++ b/packages/dotnet/5.0.201/build.sh @@ -6,7 +6,7 @@ rm dotnet.tar.gz # Cache nuget packages export DOTNET_CLI_HOME=$PWD -dotnet new console -o cache_application +./dotnet new console -o cache_application # This calls a restore on the global-packages index ($DOTNET_CLI_HOME/.nuget/packages) # If we want to allow more packages, we could add them to this cache_application