summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
)