I'd like to be able to access the GDAL binaries directly in my Ruby app - e.g:
puts `ogr2ogr --version`
Currently the ~/.heroku/vendor/bin dir, where all the binaries are located, is not in the Heroku $PATH. Can this be appended during the install process?
PATH="$PATH:$HOME/.heroku/vendor/bin"
I'd like to be able to access the GDAL binaries directly in my Ruby app - e.g:
Currently the
~/.heroku/vendor/bin
dir, where all the binaries are located, is not in the Heroku $PATH. Can this be appended during the install process?PATH="$PATH:$HOME/.heroku/vendor/bin"
Thanks