From aa5f5410e8d19087c7daac80fd76181487b32237 Mon Sep 17 00:00:00 2001 From: patrickakk Date: Sat, 5 Oct 2024 14:56:16 +0200 Subject: [PATCH] first set php path #110 --- RELEASE_NOTES.md | 7 +++++++ VERSION.txt | 2 +- src/Command/includes.sh | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index ff739dc7..a0a25d86 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,12 @@ # Release notes +## Version 2024-09 +*Release date: 2024-10-05* + +### Bug fix +- First set php path in includes.sh #110 + + ## Version 2024-07 *Release date: 2024-07-31* diff --git a/VERSION.txt b/VERSION.txt index 0bedd465..c8604bed 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -2024-07 \ No newline at end of file +2024-09 diff --git a/src/Command/includes.sh b/src/Command/includes.sh index e811bccc..9a6cd5f3 100755 --- a/src/Command/includes.sh +++ b/src/Command/includes.sh @@ -1,12 +1,12 @@ #!/bin/bash function prepare_php() { + # set path + export PATH="/layers/heroku_php/platform/bin:${PATH}" # enable intl module mkdir -p /app/.heroku/php/etc/php/conf.d cp /layers/heroku_php/platform/etc/php/php.ini /app/.heroku/php/etc/php/ sed -i 's|;user_ini.filename|user_ini.filename|g' /app/.heroku/php/etc/php/php.ini cp .user.ini /app/.heroku/php/etc/php/conf.d/ chown -R 1000:1000 /app/.heroku - # set path - export PATH="/layers/heroku_php/platform/bin:${PATH}" }