mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 14:55:20 -07:00
Chmod osx file as executable. (#1539)
This commit is contained in:
parent
8fb257d5b7
commit
aace29e1e1
1 changed files with 8 additions and 2 deletions
|
@ -170,6 +170,12 @@ Task("PackageOsx").Does(() => {
|
||||||
|
|
||||||
// Adding Startup script
|
// Adding Startup script
|
||||||
CopyFile("./osx/Radarr", outputFolderOsx + "/Radarr");
|
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(() => {
|
Task("PackageOsxApp").Does(() => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue