From ad8e6e29e2fd66e94e942ac3b555151d79f9d84e Mon Sep 17 00:00:00 2001 From: sherif807 Date: Wed, 13 Jul 2016 02:20:13 -0400 Subject: [PATCH] Update heroku.rst changed web: bin/heroku-php-apache2 web/ to web: vendor/bin/heroku-php-apache2 web/ --- cookbook/deployment/heroku.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/deployment/heroku.rst b/cookbook/deployment/heroku.rst index f1330f8f80e..22723013a09 100644 --- a/cookbook/deployment/heroku.rst +++ b/cookbook/deployment/heroku.rst @@ -121,7 +121,7 @@ create the ``Procfile`` file and to add it to the repository: .. code-block:: bash - $ echo "web: bin/heroku-php-apache2 web/" > Procfile + $ echo "web: vendor/bin/heroku-php-apache2 web/" > Procfile $ git add . $ git commit -m "Procfile for Apache and PHP" [master 35075db] Procfile for Apache and PHP