Skip to content

Commit 8cb980e

Browse files
committed
Fix path
1 parent 648f287 commit 8cb980e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

NBitcoin.Altcoins/PushNuget.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
set -euo pipefail
4-
rm -rf "bin/release/"
4+
rm -rf "bin/Release"
55
dotnet pack --configuration Release --include-symbols -p:SymbolPackageFormat=snupkg
66
package=$(find ./bin/Release -name "*.nupkg" -type f | head -n 1)
77
dotnet nuget push "$package" --source "https://api.nuget.org/v3/index.json" --api-key "$NUGET_API_KEY"

NBitcoin.TestFramework/PushNuget.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -euo pipefail
3-
rm -rf "bin/release/"
3+
rm -rf "bin/Release"
44
dotnet pack --configuration Release --include-symbols -p:SymbolPackageFormat=snupkg
55
package=$(find ./bin/Release -name "*.nupkg" -type f | head -n 1)
66
dotnet nuget push "$package" --source "https://api.nuget.org/v3/index.json" --api-key "$NUGET_API_KEY"

NBitcoin/PushNuget.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -euo pipefail
3-
rm -rf "bin/release/"
3+
rm -rf "bin/Release"
44
dotnet pack --configuration Release --include-symbols -p:SymbolPackageFormat=snupkg
55
package=$(find ./bin/Release -name "*.nupkg" -type f | head -n 1)
66
dotnet nuget push "$package" --source "https://api.nuget.org/v3/index.json" --api-key "$NUGET_API_KEY"

0 commit comments

Comments
 (0)