Skip to content

Commit

Permalink
Merge pull request #1018 from webwarrior-ws/fix-ci-squashed
Browse files Browse the repository at this point in the history
Fix Github CI
  • Loading branch information
juanfranblanco committed Mar 28, 2024
2 parents 6699ae6 + 44773c8 commit a3d2dab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Expand Up @@ -21,6 +21,6 @@ jobs:
with:
dotnet-version: 8.0.x
- name: Run
run:
cmd /c "START /b nuget.bat"|
cmd /c "START /b nuget.bat"
run: |
cd src
& ".\nuget.bat"
6 changes: 3 additions & 3 deletions src/nuget.bat
Expand Up @@ -197,12 +197,12 @@ cd ..

setlocal
set DIR=%~dp0
set OUTPUTDIR=%~dp0\packages
set OUTPUTDIR=%~dp0packages\
for /R %DIR% %%a in (*.nupkg) do xcopy "%%a" "%OUTPUTDIR%"
xcopy *.nupkg packages /s /y
xcopy *.nupkg packages /y

for /R %DIR% %%a in (*.snupkg) do xcopy "%%a" "%OUTPUTDIR%"
xcopy *.snupkg packages /s /y
xcopy *.snupkg packages /y

EXIT /B %ERRORLEVEL%

Expand Down

0 comments on commit a3d2dab

Please sign in to comment.