projects
/
git-annex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
628429f
)
got logic backwards..
author
Joey Hess
<joeyh@joeyh.name>
Tue, 3 Nov 2015 14:51:21 +0000
(10:51 -0400)
committer
Joey Hess
<joeyh@joeyh.name>
Tue, 3 Nov 2015 14:51:21 +0000
(10:51 -0400)
Build/DesktopFile.hs
patch
|
blob
|
history
diff --git
a/Build/DesktopFile.hs
b/Build/DesktopFile.hs
index cb5a47b691e90f820ce25f5ccd06c9007d76276b..cb02d749cfd48ca47234ce97202cd1e773f831a5 100644
(file)
--- 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
)