From e143e14f5b469e3c66f8342092fa6fe901a05bf5 Mon Sep 17 00:00:00 2001 From: Bas Kamer Date: Mon, 5 Sep 2022 14:09:06 +0200 Subject: [PATCH] remove prefer-dist (#126) Signed-off-by: Bas Kamer --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index a5f3c2c..7394654 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -86,7 +86,7 @@ function composer_install_dependencies { local DEPS=$1 local IGNORE_PHP_PLATFORM_REQUIREMENT=$2 local ADDITIONAL_COMPOSER_ARGUMENTS=$3 - local COMPOSER_ARGS="--ansi --no-interaction --no-progress --prefer-dist ${ADDITIONAL_COMPOSER_ARGUMENTS}" + local COMPOSER_ARGS="--ansi --no-interaction --no-progress ${ADDITIONAL_COMPOSER_ARGUMENTS}" if [[ "${IGNORE_PHP_PLATFORM_REQUIREMENT}" == "true" ]];then COMPOSER_ARGS="${COMPOSER_ARGS} --ignore-platform-req=php" fi