Skip to content

Commit fb336cc

Browse files
authored
Merge pull request #50 from ergebnis/fix/indent
Fix: Indentation
2 parents 7cd0f97 + 6021c62 commit fb336cc

File tree

1 file changed

+6
-6
lines changed
  • actions/composer/install

1 file changed

+6
-6
lines changed

actions/composer/install/run.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ if [[ ! -d ${workingDirectory} ]]; then
1010
fi
1111

1212
if [[ ${dependencies} == "lowest" ]]; then
13-
composer update --ansi --no-interaction --no-progress --prefer-lowest -working-dir="${workingDirectory}"
13+
composer update --ansi --no-interaction --no-progress --prefer-lowest -working-dir="${workingDirectory}"
1414

15-
exit $?
15+
exit $?
1616
fi
1717

1818
if [[ ${dependencies} == "locked" ]]; then
19-
composer install --ansi --no-interaction --no-progress -working-dir="${workingDirectory}"
19+
composer install --ansi --no-interaction --no-progress -working-dir="${workingDirectory}"
2020

21-
exit $?
21+
exit $?
2222
fi
2323

2424
if [[ ${dependencies} == "highest" ]]; then
25-
composer update --ansi --no-interaction --no-progress -working-dir="${workingDirectory}"
25+
composer update --ansi --no-interaction --no-progress -working-dir="${workingDirectory}"
2626

27-
exit $?
27+
exit $?
2828
fi
2929

3030
echo "::error::The value for the \"dependencies\" input needs to be one of \"lowest\", \"locked\", \"highest\" - got \"${dependencies}\" instead."

0 commit comments

Comments
 (0)