aboutsummaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-11-03 10:51:21 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-11-03 10:51:21 -0400
commitc95d05b031b5e76a2ca5d4592938485c5bf029db (patch)
tree4aeb26fbde23b23251cadd23ace537dc8e9d764a /Build
parent3be3345bb317422ec247f1f19b818bda4d84f4fb (diff)
got logic backwards..
Diffstat (limited to 'Build')
-rw-r--r--Build/DesktopFile.hs4
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
)