diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-06 21:48:35 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-06 21:48:35 -0400 |
commit | a20e1806034e84e92130c88a1816f4760ab5fc68 (patch) | |
tree | 0399c54888c8d230f00203039c9cb1c215a0d011 /Utility/WebApp.hs | |
parent | 68b8850149a2311a2953a80777d9e747a5972468 (diff) |
Revert "try different syntax"
This reverts commit 68b8850149a2311a2953a80777d9e747a5972468.
Diffstat (limited to 'Utility/WebApp.hs')
-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 4cf6e792d..2f3ebfb5b 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 |