File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,21 +10,21 @@ if [[ ! -d ${workingDirectory} ]]; then
10
10
fi
11
11
12
12
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} "
14
14
15
- exit $?
15
+ exit $?
16
16
fi
17
17
18
18
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} "
20
20
21
- exit $?
21
+ exit $?
22
22
fi
23
23
24
24
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} "
26
26
27
- exit $?
27
+ exit $?
28
28
fi
29
29
30
30
echo " ::error::The value for the \" dependencies\" input needs to be one of \" lowest\" , \" locked\" , \" highest\" - got \" ${dependencies} \" instead."
You can’t perform that action at this time.
0 commit comments