From 495d4b82cf62ab304ff43f932208ec8a3cf8a7b3 Mon Sep 17 00:00:00 2001 From: gruve-p Date: Mon, 20 Jun 2022 06:07:58 +0200 Subject: [PATCH] Fix warning from CLI parser (#3875) --- run.ps1 | 2 +- run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/run.ps1 b/run.ps1 index 437ebc9ee..e17196322 100755 --- a/run.ps1 +++ b/run.ps1 @@ -1 +1 @@ -dotnet run --no-launch-profile --no-build -c Release -p .\BTCPayServer\BTCPayServer.csproj -- $args +dotnet run --no-launch-profile --no-build -c Release --project .\BTCPayServer\BTCPayServer.csproj -- $args diff --git a/run.sh b/run.sh index 83ced22ec..c3a1807ef 100755 --- a/run.sh +++ b/run.sh @@ -1,3 +1,3 @@ #!/bin/bash -dotnet run --no-launch-profile --no-build -c Release -p "BTCPayServer/BTCPayServer.csproj" -- $@ +dotnet run --no-launch-profile --no-build -c Release --project "BTCPayServer/BTCPayServer.csproj" -- $@