Heroku's Windows toolbelt and LD_LIBRARY_PATH
问题 I'm deploying a PHP application on Heroku and I need to run some tasks using CLI. In order to do that I have to set LD_LIBRARY_PATH env variable using this command: heroku config:add LD_LIBRARY_PATH=/app/php/ext:/app/apache/lib but every time I do it toolbelt overrides the command and the variable points to C:\Program Files (x86)\Git\app\php\ext;C:\Program Files (x86)\Git\app\apache\lib . Obviously it's not okay. Does anyone have any ideas how to do this in proper way? 回答1: 5 days passed and