diff options
-rw-r--r-- | Build/InstallDesktopFile.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/InstallDesktopFile.hs b/Build/InstallDesktopFile.hs index 92adacff9..035d16016 100644 --- a/Build/InstallDesktopFile.hs +++ b/Build/InstallDesktopFile.hs @@ -97,9 +97,9 @@ writeOSXDesktop command = do ifM isRoot ( return () , do - let commandfile <- home </> "Desktop" </> "git-annex-webapp.command" + let commandfile = home </> "Desktop" </> "git-annex-webapp.command" writeFile commandfile $ unwords [command, "webapp"] - mode <- fileMode <$> getFileStatus f + mode <- fileMode <$> getFileStatus commandfile setFileMode commandfile $ mode `unionFileModes` ownerExecuteMode ) |