mirror of
https://github.com/Readarr/Readarr
synced 2026-03-12 15:41:40 +01:00
Allow build script to produce packages on non-windows OSes
(cherry picked from commit 45ab2b2409fd11c556c1374aec8d27aec898c4fc)
This commit is contained in:
parent
a1d4b3a0cf
commit
dddcb89c5b
1 changed files with 4 additions and 1 deletions
5
build.sh
5
build.sh
|
|
@ -198,7 +198,10 @@ PackageWindows()
|
|||
local folder=$artifactsFolder/$runtime/$framework/Readarr
|
||||
|
||||
PackageFiles "$folder" "$framework" "$runtime"
|
||||
cp -r $outputFolder/$framework-windows/$runtime/publish/* $folder
|
||||
|
||||
if [ "$os" = "windows" ]; then
|
||||
cp -r $outputFolder/$framework-windows/$runtime/publish/* $folder
|
||||
fi
|
||||
|
||||
echo "Removing Readarr.Mono"
|
||||
rm -f $folder/Readarr.Mono.*
|
||||
|
|
|
|||
Loading…
Reference in a new issue