got logic backwards..

This commit is contained in:
Joey Hess 2015-11-03 10:51:21 -04:00
parent 628429f1b0
commit e5323f4414
Failed to extract signature

View file

@ -82,6 +82,6 @@ install command = do
installUser :: FilePath -> IO ()
installUser command = ifM systemwideInstall
( install command
, return ()
( return ()
, install command
)