Skip to content

Commit

Permalink
FIX: add check for 64-bit macOS in Try_Browser.
Browse files Browse the repository at this point in the history
  • Loading branch information
0branch committed Apr 17, 2018
1 parent 259b252 commit 008708a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/os/posix/host-lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ static int Try_Browser(char *browser, REBCHR *url)
***********************************************************************/
{
if (
#if defined(TO_OSX) || defined(TO_OSXI)
#if defined(TO_OSX) || defined(TO_OSXI) || defined(TO_OSX_X64)
Try_Browser("/usr/bin/open", url)
#else
Try_Browser("xdg-open", url)
Expand Down

0 comments on commit 008708a

Please sign in to comment.