mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 05:44:50 +00:00
Most likely fixed #745 now
This commit is contained in:
parent
aace29e1e1
commit
390e4c3014
1 changed files with 3 additions and 3 deletions
|
@ -168,14 +168,14 @@ Task("PackageOsx").Does(() => {
|
|||
// Adding MediaInfo dylib
|
||||
CopyFiles(sourceFolder + "/Libraries/MediaInfo/*.dylib", outputFolderOsx);
|
||||
|
||||
// Adding Startup script
|
||||
CopyFile("./osx/Radarr", outputFolderOsx + "/Radarr");
|
||||
|
||||
// Chmod as executable
|
||||
StartProcess(@"C:\cygwin64\bin\chmod.exe", new ProcessSettings()
|
||||
.WithArguments(args => args
|
||||
.Append("+x")
|
||||
.Append(outputFolderOsx + "/Radarr")));
|
||||
|
||||
// Adding Startup script
|
||||
CopyFile("./osx/Radarr", outputFolderOsx + "/Radarr");
|
||||
});
|
||||
|
||||
Task("PackageOsxApp").Does(() => {
|
||||
|
|
Loading…
Reference in a new issue