mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-24 06:27:08 -04:00
@cosmetic fixed build
This commit is contained in:
parent
c460153e66
commit
2f271635f9
2 changed files with 13 additions and 7 deletions
|
@ -8,8 +8,11 @@ jobs:
|
|||
- checkout
|
||||
- run: git submodule update --init --recursive
|
||||
- run:
|
||||
name: Prepare Build
|
||||
command: ./build.sh PrepareBuild
|
||||
name: Clean Build
|
||||
command: ./build.sh Clean
|
||||
- run:
|
||||
name: Restore Nuget
|
||||
command: ./build.sh NugetMono
|
||||
- run:
|
||||
name: Build
|
||||
command: ./build.sh Build
|
||||
|
|
13
build.sh
13
build.sh
|
@ -277,27 +277,30 @@ if [ $# -eq 0 ]
|
|||
PackageOsxApp
|
||||
PackageTests
|
||||
CleanupWindowsPackage
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$1" -eq "PrepareBuild" ]
|
||||
if [ "$1" = "CleanXbuild" ]
|
||||
then rm -rf $outputFolder
|
||||
CleanWithXbuild
|
||||
fi
|
||||
|
||||
if [ "$1" = "NugetMono" ]
|
||||
then rm -rf $outputFolder
|
||||
RestoreNuget
|
||||
fi
|
||||
|
||||
if [ "$1" -eq "Build" ]
|
||||
if [ "$1" = "Build" ]
|
||||
then BuildWithXbuild
|
||||
CleanFolder $outputFolder false
|
||||
AddJsonNet
|
||||
rm $outputFolder/Mono.Posix.dll
|
||||
fi
|
||||
|
||||
if [ "$1" -eq "Gulp" ]
|
||||
if [ "$1" = "Gulp" ]
|
||||
then RunGulp
|
||||
fi
|
||||
|
||||
if [ "$1" -eq "Package" ]
|
||||
if [ "$1" = "Package" ]
|
||||
then PackageMono
|
||||
PackageOsx
|
||||
PackageOsxApp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue