summaryrefslogtreecommitdiff
path: root/Utility/WebApp.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-12-06 22:07:16 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-12-06 22:07:16 -0400
commit6a094efd3bb743118db698fab2c0cc7c502ae55c (patch)
treebb1c281a4d55eabfbd60575a23a75ebaad2e1cd5 /Utility/WebApp.hs
parenta20e1806034e84e92130c88a1816f4760ab5fc68 (diff)
weird DOS CMD shell is weird
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 2f3ebfb5b..4176d418d 100644
--- a/Utility/WebApp.hs
+++ b/Utility/WebApp.hs
@@ -54,7 +54,7 @@ browserProc url = proc "am"
["start", "-a", "android.intent.action.VIEW", "-d", url]
#else
#ifdef mingw32_HOST_OS
-browserProc url = proc "cmd" ["/c", "start", url]
+browserProc url = proc "cmd" ["/c start " ++ url]
#else
browserProc url = proc "xdg-open" [url]
#endif