Skip to content

Commit

Permalink
Resolved bug in previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
iphoting committed Dec 5, 2012
1 parent 52d0e4a commit b135b57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,10 @@ fi
# Preserve current php-fpm.conf so that env list does
# not go out of hand across restarts.
if [ -r /app/vendor/php/php-fpm.conf.current ]; then
cp -f /app/vendor/php/php-fpm.conf.current /app/vendor/php/php-fpm.conf
if [ -r /app/vendor/php/etc/php-fpm.conf.current ]; then
cp -f /app/vendor/php/etc/php-fpm.conf.current /app/vendor/php/etc/php-fpm.conf
else
cp -f /app/vendor/php/php-fpm.conf /app/vendor/php/php-fpm.conf.current
cp -f /app/vendor/php/etc/php-fpm.conf /app/vendor/php/etc/php-fpm.conf.current
fi
# Expose Heroku config vars to PHP-FPM processes
Expand Down

0 comments on commit b135b57

Please sign in to comment.