io.standard-paths: On mac when you launch Factor from the doc it doesn't have the login shell PATH variable for paths such as /usr/local/bin for homebrew. Add a word that finds things in this path as well.

Note that launching a binary found this way needs the full path, as the PATH variable itself is not modified and the binary will still not be in PATH if it wasnt before.
db4
Doug Coleman 2015-06-24 18:44:09 -07:00
parent 8325837b84
commit 9d2c641a99
2 changed files with 19 additions and 2 deletions

View File

@ -10,6 +10,11 @@ HOOK: find-in-path* os ( string -- path/f )
HOOK: find-in-applications os ( directories filename -- path )
HOOK: find-in-standard-login-path* os ( string -- path/f )
M: object find-in-standard-login-path*
find-in-path* ;
: find-in-path ( string -- path/f )
[ f ] [
[ find-in-path* ] keep over
@ -19,6 +24,12 @@ HOOK: find-in-applications os ( directories filename -- path )
: ?find-in-path ( string -- path/string )
[ find-in-path ] [ or ] bi ;
: find-in-standard-login-path ( string -- path/f )
[ f ] [
[ find-in-standard-login-path* ] keep over
[ append-path ] [ 2drop f ] if
] if-empty ;
{
{ [ os windows? ] [ "io.standard-paths.windows" ] }
{ [ os macosx? ] [ "io.standard-paths.macosx" ] }

View File

@ -1,10 +1,16 @@
! Copyright (C) 2011 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: environment fry io.files io.pathnames io.standard-paths
kernel sequences splitting system ;
USING: environment fry io io.encodings.utf8 io.files io.launcher
io.pathnames io.standard-paths kernel sequences splitting system ;
IN: io.standard-paths.unix
M: unix find-in-path*
[ "PATH" os-env ":" split ] dip
'[ _ append-path exists? ] find nip ;
: standard-login-paths ( -- strings )
{ "bash" "-l" "-c" "echo $PATH" }
utf8 <process-reader> stream-contents ":" split ;
M: unix find-in-standard-login-path*
[ standard-login-paths ] dip '[ _ append-path exists? ] find nip ;