Compare commits

..

21 Commits

Author SHA1 Message Date
Jephté Clain 0527aee96e Intégration de la branche release-11.3.0 2024-09-24 16:02:01 +04:00
Jephté Clain f39787c6ec Intégration de la branche release-11.2.0 2024-06-21 20:34:14 +04:00
Jephté Clain 9d8e3c53d1 Intégration de la branche release-11.1.0 2024-02-01 20:59:56 +04:00
Jephté Clain 1b7b2744ba Intégration de la branche release-11.0.0 2023-09-05 14:29:29 +04:00
Jephté Clain 771bd1c563 Intégration de la branche release-10.0.0 2023-08-12 21:06:39 +04:00
Jephté Clain 6e36d26471 Intégration de la branche release-9.16.0 2023-06-15 15:28:28 +04:00
Jephté Clain e5ab8dd240 Intégration de la branche release-9.15.0 2023-06-14 15:41:57 +04:00
Jephté Clain c0d4e950e9 Intégration de la branche release-9.14.0 2023-03-15 17:48:48 +04:00
Jephté Clain e76a6a6a84 Intégration de la branche release-9.13.0 2022-02-07 22:20:41 +04:00
Jephté Clain b03df72236 Intégration de la branche release-9.12.0 2021-03-29 09:41:20 +04:00
Jephté Clain 44f719b2e6 Intégration de la branche release-9.11.0 2020-12-11 15:43:15 +04:00
Jephté Clain 337f24c447 Intégration de la branche release-9.10.0 2020-11-12 23:05:13 +04:00
Jephté Clain 246b9473aa Intégration de la branche release-9.9.0 2020-09-21 18:08:31 +04:00
Jephté Clain 9d5713c1f9 Intégration de la branche release-9.8.0 2020-04-28 16:42:19 +04:00
Jephté Clain 05fd86acc7 Intégration de la branche release-9.7.0 2020-04-17 10:20:37 +04:00
Jephté Clain abd178bf0d Intégration de la branche release-9.6.0 2020-02-24 09:13:57 +04:00
Jephté Clain 2283a66201 Intégration de la branche release-9.5.0 2020-01-28 14:06:01 +04:00
Jephté Clain 7f143c0fd4 Intégration de la branche release-9.4.4 2020-01-27 08:48:56 +04:00
Jephté Clain 046ba0d323 Intégration de la branche release-9.4.3 2020-01-24 13:02:50 +04:00
Jephté Clain c8b8f107a1 Intégration de la branche release-9.4.2 2020-01-24 08:52:31 +04:00
Jephté Clain 1210ca7382 Intégration de la branche release-9.4.1 2020-01-20 14:46:16 +04:00
1 changed files with 4 additions and 22 deletions

26
dk
View File

@ -2099,10 +2099,8 @@ function auto_composer() {
esac
done
local use_runphp use_image
if [ "$COMPOSER_PHP" == runphp ]; then
use_runphp=1
elif [ "$COMPOSER_PHP" == force -o "$COMPOSER_PHP" == any ]; then
local use_image
if [ "$COMPOSER_PHP" == force -o "$COMPOSER_PHP" == any ]; then
use_image=1
elif [ "$COMPOSER_PHP" == none -o "$COMPOSER_PHP" == system ]; then
COMPOSER_PHP=none
@ -2123,7 +2121,7 @@ exit((PHP_VERSION_ID > $version)? 0: 1);
*) ewarn "Erreur lors du lancement de PHP: est-il installé? Vous pouvez utiliser COMPOSER_PHP=any";;
esac
fi
if [ -n "$use_runphp" -o -n "$use_image" -o "$COMPOSER_PHP" == none ]; then
if [ -n "$use_image" -o "$COMPOSER_PHP" == none ]; then
: # ok, on a déjà décidé
elif [ -z "$COMPOSER_PHP" ]; then
# pas de version minimum, tester simplement la valeur de COMPOSER_IMAGE
@ -2145,23 +2143,7 @@ exit((PHP_VERSION_ID < $version)? 0: 1);
esac
fi
if [ -n "$use_runphp" ]; then
(
export PROJDIR="$(pwd)"
export RUNPHP_STANDALONE=
RUNPHP=; DIST=; REGISTRY=
if [ -f "$PROJDIR/.runphp.conf" ]; then
source "$PROJDIR/.runphp.conf"
[ -n "$RUNPHP" ] && exec "$PROJDIR/$RUNPHP" composer "$@"
elif [ -f "$PROJDIR/sbin/runphp" ]; then
exec "$PROJDIR/sbin/runphp" composer "$@"
elif [ -f "$PROJDIR/runphp" ]; then
exec "$PROJDIR/runphp" composer "$@"
fi
exec runphp composer "$@"
)
elif [ -n "$use_image" ]; then
if [ -n "$use_image" ]; then
[ "$COMPOSER_IMAGE" != none ] || die "Vous devez spécifier l'image à utiliser pour composer"
local PREVIOUS_DOCKER_MACHINE_NAME="$DOCKER_MACHINE_NAME"