summaryrefslogtreecommitdiff
path: root/Utility/WebApp.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-07-26 12:59:40 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-07-26 12:59:40 -0400
commit2f775ef3e3aaea9ab15f99db3a48390a903919ae (patch)
treecb215561c28a0913f0ac142282c551ecbeb3e5b2 /Utility/WebApp.hs
parent95f4b192f0accbdaaa4e5c985b4e1c1a17b8aec7 (diff)
fix OSX open call
Diffstat (limited to 'Utility/WebApp.hs')
-rw-r--r--Utility/WebApp.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/WebApp.hs b/Utility/WebApp.hs
index 23e00ba62..517251a7a 100644
--- a/Utility/WebApp.hs
+++ b/Utility/WebApp.hs
@@ -42,7 +42,7 @@ localhost = "localhost"
runBrowser :: String -> IO Bool
runBrowser url = boolSystem cmd [Param url]
where
-#if MAC
+#if OSX
cmd = "open"
#else
cmd = "xdg-open"