diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-06 22:07:16 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-06 22:07:16 -0400 |
commit | 6a094efd3bb743118db698fab2c0cc7c502ae55c (patch) | |
tree | bb1c281a4d55eabfbd60575a23a75ebaad2e1cd5 | |
parent | a20e1806034e84e92130c88a1816f4760ab5fc68 (diff) |
weird DOS CMD shell is weird
-rw-r--r-- | Utility/WebApp.hs | 2 |
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 |