mirror of
https://github.com/xmonad/xmonad.git
synced 2025-08-18 21:23:48 -07:00
The recompile function now returns a boolean status instead of ().
This commit is contained in:
4
Main.hs
4
Main.hs
@@ -31,8 +31,8 @@ main = do
|
||||
case args of
|
||||
[] -> launch
|
||||
["--resume", _] -> launch
|
||||
["--recompile"] -> recompile False
|
||||
["--recompile-force"] -> recompile True
|
||||
["--recompile"] -> recompile False >> return ()
|
||||
["--recompile-force"] -> recompile True >> return ()
|
||||
["--version"] -> putStrLn "xmonad 0.5"
|
||||
_ -> fail "unrecognized flags"
|
||||
|
||||
|
Reference in New Issue
Block a user