diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-11-03 10:51:21 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-11-03 10:51:21 -0400 |
commit | c95d05b031b5e76a2ca5d4592938485c5bf029db (patch) | |
tree | 4aeb26fbde23b23251cadd23ace537dc8e9d764a /Build/DesktopFile.hs | |
parent | 3be3345bb317422ec247f1f19b818bda4d84f4fb (diff) |
got logic backwards..
Diffstat (limited to 'Build/DesktopFile.hs')
-rw-r--r-- | Build/DesktopFile.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/DesktopFile.hs b/Build/DesktopFile.hs index cb5a47b69..cb02d749c 100644 --- a/Build/DesktopFile.hs +++ b/Build/DesktopFile.hs @@ -82,6 +82,6 @@ install command = do installUser :: FilePath -> IO () installUser command = ifM systemwideInstall - ( install command - , return () + ( return () + , install command ) |