From d5a50a0c8b98c00bf51e34d18d357e3318e12185 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 6 Dec 2013 21:48:35 -0400 Subject: [PATCH] Revert "try different syntax" This reverts commit 891ca9a75d241a6baff1229b7adb2d0edd4cb225. --- Utility/WebApp.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utility/WebApp.hs b/Utility/WebApp.hs index 4cf6e792de..2f3ebfb5b6 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