diff options
author | https://www.google.com/accounts/o8/id?id=AItOawkSq2FDpK2n66QRUxtqqdbyDuwgbQmUWus <Jimmy@web> | 2012-07-26 11:24:10 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2012-07-26 11:24:10 +0000 |
commit | 5457303c1c5f1155d3d380e40400b24990423c88 (patch) | |
tree | b470bca89f685dce6e352bd98030edb3be43d20d /doc/bugs | |
parent | 587fe279515a4811b68726d3d754c470d948e5e2 (diff) |
Diffstat (limited to 'doc/bugs')
-rw-r--r-- | doc/bugs/Fix_for_opening_a_browser_on_a_mac___40__or_xdg-open_on_linux__47__bsd__63____41__.mdwn | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/bugs/Fix_for_opening_a_browser_on_a_mac___40__or_xdg-open_on_linux__47__bsd__63____41__.mdwn b/doc/bugs/Fix_for_opening_a_browser_on_a_mac___40__or_xdg-open_on_linux__47__bsd__63____41__.mdwn new file mode 100644 index 000000000..db38d9184 --- /dev/null +++ b/doc/bugs/Fix_for_opening_a_browser_on_a_mac___40__or_xdg-open_on_linux__47__bsd__63____41__.mdwn @@ -0,0 +1,19 @@ +Utility/WebApp.hs, didn't quite have the right definition to use 'open' instead of 'xdg-open' on OSX, the follow fixes that + +<pre> +diff --git a/Utility/WebApp.hs b/Utility/WebApp.hs +index 6936c66..0593dda 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" +</pre> + +I guess I should really for the repo and submit a stream of minor changes :P, @joeyh please let me know if you're getting annoyed with copy and pasting the small fixes from the bug/forums section. |