From: Joey Hess Date: Tue, 3 Nov 2015 14:51:21 +0000 (-0400) Subject: got logic backwards.. X-Git-Tag: archive/raspbian/10.20250416-2+rpi1~1^2~324^2~120 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e5323f4414a46def125ea93c5ff3af72599ff5f8;p=git-annex.git got logic backwards.. --- diff --git a/Build/DesktopFile.hs b/Build/DesktopFile.hs index cb5a47b691..cb02d749cf 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 )