summaryrefslogtreecommitdiff
path: root/Assistant/Install/AutoStart.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Assistant/Install/AutoStart.hs')
-rw-r--r--Assistant/Install/AutoStart.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Assistant/Install/AutoStart.hs b/Assistant/Install/AutoStart.hs
index 7e1fd2d1f..a49ac32a4 100644
--- a/Assistant/Install/AutoStart.hs
+++ b/Assistant/Install/AutoStart.hs
@@ -19,7 +19,7 @@ import System.FilePath
installAutoStart :: FilePath -> FilePath -> IO ()
installAutoStart command file = do
#ifdef darwin_HOST_OS
- createDirectoryIfMissing True (takeDirectory file)
+ createDirectoryIfMissing True (parentDir file)
writeFile file $ genOSXAutoStartFile osxAutoStartLabel command
["assistant", "--autostart"]
#else