Skip to content

Commit

Permalink
Build script fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ayesaac committed Nov 28, 2019
1 parent b683ec5 commit 6a434de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ SET TAG=%TAG:tags/=%
dotnet test .\src\ViewModels.Core.Tests\ViewModels.Core.Tests.csproj
if %errorlevel% neq 0 exit /b %errorlevel%

dotnet pack .\src\ViewModels.Core\ViewModels.Core.csproj -o ..\..\dist -p:Version=%version% -p:PackageVersion=%version% -p:Tag="%TAG%" -c Release
dotnet pack .\src\ViewModels.Core\ViewModels.Core.csproj -o .\dist -p:Version=%version% -p:PackageVersion=%version% -p:Tag="%TAG%" -c Release
exit /b %errorlevel%
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ tag=${tag/tags\//}

dotnet test .\\src\\ViewModels.Core.Tests\\ViewModels.Core.Tests.csproj

dotnet pack .\\src\\ViewModels.Core\\ViewModels.Core.csproj -o ..\\..\\dist -p:Version="$version" -p:PackageVersion="$version" -p:Tag="$tag" -c Release
dotnet pack .\\src\\ViewModels.Core\\ViewModels.Core.csproj -o .\\dist -p:Version="$version" -p:PackageVersion="$version" -p:Tag="$tag" -c Release

0 comments on commit 6a434de

Please sign in to comment.