1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 05:25:10 +00:00

Keep mono PDBs, don't try to copy missing dll.config (#736)

This commit is contained in:
ta264 2019-04-08 19:23:46 +01:00 committed by GitHub
parent b1aff8fe58
commit f2a1100d95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -159,6 +159,9 @@ CreateMdbs()
tools/pdb2mdb/pdb2mdb.exe ${filename%.pdb}.exe tools/pdb2mdb/pdb2mdb.exe ${filename%.pdb}.exe
fi fi
done done
echo "Removing PDBs"
find $path -name "*.pdb" -exec rm "{}" \;
fi fi
} }
@ -174,9 +177,6 @@ PackageMono()
echo "Creating MDBs" echo "Creating MDBs"
CreateMdbs $outputFolderLinux CreateMdbs $outputFolderLinux
echo "Removing PDBs"
find $outputFolderLinux -name "*.pdb" -exec rm "{}" \;
echo "Removing Service helpers" echo "Removing Service helpers"
rm -f $outputFolderLinux/ServiceUninstall.* rm -f $outputFolderLinux/ServiceUninstall.*
rm -f $outputFolderLinux/ServiceInstall.* rm -f $outputFolderLinux/ServiceInstall.*
@ -277,9 +277,6 @@ PackageTests()
CleanFolder $testPackageFolder true CleanFolder $testPackageFolder true
echo "Adding Lidarr.Core.dll.config (for dllmap)"
cp $sourceFolder/NzbDrone.Core/Lidarr.Core.dll.config $testPackageFolder
echo "Adding CurlSharp.dll.config (for dllmap)" echo "Adding CurlSharp.dll.config (for dllmap)"
cp $sourceFolder/NzbDrone.Common/CurlSharp.dll.config $testPackageFolder cp $sourceFolder/NzbDrone.Common/CurlSharp.dll.config $testPackageFolder