From 6021c62e32ffd67e1f8023e2d1f28a0995059529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 6 Jan 2022 10:47:17 +0100 Subject: [PATCH] Fix: Indentation --- actions/composer/install/run.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/actions/composer/install/run.sh b/actions/composer/install/run.sh index aab318d..ca9ce10 100755 --- a/actions/composer/install/run.sh +++ b/actions/composer/install/run.sh @@ -10,21 +10,21 @@ if [[ ! -d ${workingDirectory} ]]; then fi if [[ ${dependencies} == "lowest" ]]; then - composer update --ansi --no-interaction --no-progress --prefer-lowest -working-dir="${workingDirectory}" + composer update --ansi --no-interaction --no-progress --prefer-lowest -working-dir="${workingDirectory}" - exit $? + exit $? fi if [[ ${dependencies} == "locked" ]]; then - composer install --ansi --no-interaction --no-progress -working-dir="${workingDirectory}" + composer install --ansi --no-interaction --no-progress -working-dir="${workingDirectory}" - exit $? + exit $? fi if [[ ${dependencies} == "highest" ]]; then - composer update --ansi --no-interaction --no-progress -working-dir="${workingDirectory}" + composer update --ansi --no-interaction --no-progress -working-dir="${workingDirectory}" - exit $? + exit $? fi echo "::error::The value for the \"dependencies\" input needs to be one of \"lowest\", \"locked\", \"highest\" - got \"${dependencies}\" instead."