Skip to content

Commit b135b57

Browse files
committed
Resolved bug in previous commit.
1 parent 52d0e4a commit b135b57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/compile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,10 @@ fi
252252
253253
# Preserve current php-fpm.conf so that env list does
254254
# not go out of hand across restarts.
255-
if [ -r /app/vendor/php/php-fpm.conf.current ]; then
256-
cp -f /app/vendor/php/php-fpm.conf.current /app/vendor/php/php-fpm.conf
255+
if [ -r /app/vendor/php/etc/php-fpm.conf.current ]; then
256+
cp -f /app/vendor/php/etc/php-fpm.conf.current /app/vendor/php/etc/php-fpm.conf
257257
else
258-
cp -f /app/vendor/php/php-fpm.conf /app/vendor/php/php-fpm.conf.current
258+
cp -f /app/vendor/php/etc/php-fpm.conf /app/vendor/php/etc/php-fpm.conf.current
259259
fi
260260
261261
# Expose Heroku config vars to PHP-FPM processes

0 commit comments

Comments
 (0)