Skip to content

Commit

Permalink
fix - Fixed push.cmd script
Browse files Browse the repository at this point in the history
---

We've fixed the Windows version of push script where the script thinks that we haven't specified any source.

---

Type: fix
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Sep 3, 2024
1 parent 02bb344 commit 2ec0303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/push.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set apikey=%1

REM This script pushes. Use when you have VS installed.
echo Pushing...
cmd /C "forfiles /s /m *.nupkg /p ..\ /C "cmd /c dotnet nuget push @path --api-key %apikey% --source "nuget.org"""
cmd /C "forfiles /s /m *.nupkg /p ..\ /C "cmd /c dotnet nuget push @path --api-key %apikey% --source nuget.org""
if %errorlevel% == 0 goto :success
echo There was an error trying to push (%errorlevel%).
goto :finished
Expand Down

0 comments on commit 2ec0303

Please sign in to comment.