This issue is tied to julia, however, the fix may not be in julia.
The problem appears when I try to initialize the package manager on certain OSX systems. Right now the only confirmed case is on a machine running 10.6.8.
All that happens is:
julia> Pkg.init()
execvp(): No such file or directory
I think this is happening because the package manager cannot find git.
The troubling part (and the reason the fix may not be in julia) is that, in a regular bash terminal, I don't have this problem. The error appears for me when I start julia from a gui program (which, I've heard, have different environment variable set????)... And, when I start the gui program from a bash terminal, the problem disappears.
So it would seem to be a case of missing dependencies? If that's the case I'm not really sure where those should be brought in (should I be modifying users gui app environment variables? It would seem frustrating to package things like git with julia and end up duplicating them).
This guy seems to have had a similar issue with llvm / gfortran and his solution seems to have been to install xcode. Which is lame.
I know this is a bit of an odd topic, thanks for any help you can give me!