Chmod osx file as executable. (#1539)

pull/2/head
Mike 7 years ago committed by GitHub
parent 8fb257d5b7
commit aace29e1e1

@ -170,6 +170,12 @@ Task("PackageOsx").Does(() => {
// 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")));
});
Task("PackageOsxApp").Does(() => {

Loading…
Cancel
Save