diff options
Diffstat (limited to 'Command/Assistant.hs')
-rw-r--r-- | Command/Assistant.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Assistant.hs b/Command/Assistant.hs index 53f7e4baf..b039e2731 100644 --- a/Command/Assistant.hs +++ b/Command/Assistant.hs @@ -54,7 +54,7 @@ autoStart = do let nothing = error $ "Nothing listed in " ++ autostartfile ifM (doesFileExist autostartfile) ( do - dirs <- lines <$> readFile autostartfile + dirs <- nub . lines <$> readFile autostartfile program <- readProgramFile when (null dirs) nothing forM_ dirs $ \d -> do |