From cbe759ab5667e91ecbdd5f3a2b92e1663e3ae6df Mon Sep 17 00:00:00 2001 From: Thomas Hobson Date: Sat, 20 Mar 2021 15:57:29 +1300 Subject: [PATCH] pkg(dotnet-5.0.201): fix builds --- packages/dotnet/5.0.201/compile | 6 +++--- packages/dotnet/5.0.201/run | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/dotnet/5.0.201/compile b/packages/dotnet/5.0.201/compile index d92c7a9..1500acb 100644 --- a/packages/dotnet/5.0.201/compile +++ b/packages/dotnet/5.0.201/compile @@ -1,12 +1,12 @@ #!/usr/bin/env bash export DOTNET_CLI_HOME=$PWD +export HOME=$PWD -dotnet build > /dev/null # Shut the thing up +dotnet build --help > /dev/null # Shut the thing up dotnet new console -o . --no-restore rm Program.cs dotnet restore --source $DOTNET_ROOT/.nuget/packages - -dotnet build -o . --no-restore \ No newline at end of file +dotnet build --no-restore \ No newline at end of file diff --git a/packages/dotnet/5.0.201/run b/packages/dotnet/5.0.201/run index 40495e0..774a08a 100644 --- a/packages/dotnet/5.0.201/run +++ b/packages/dotnet/5.0.201/run @@ -4,4 +4,4 @@ export DOTNET_CLI_HOME=$PWD shift -dotnet $(basename $(realpath .)).dll "$@" \ No newline at end of file +dotnet bin/Debug/net5.0/$(basename $(realpath .)).dll "$@" \ No newline at end of file