Skip to content

Commit d3c4647

Browse files
authored
fix(composer-update): escape new lines for arguments
1 parent 9af130b commit d3c4647

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spaceonfire/bin/composer-update

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
set -e
33

44
if [ "$APPLICATION_ENV" == "production" ]; then
5-
composer update
6-
--no-dev
7-
--prefer-dist
8-
--classmap-authoritative
5+
composer update \
6+
--no-dev \
7+
--prefer-dist \
8+
--classmap-authoritative \
99
--optimize-autoloader
1010
else
1111
composer update

0 commit comments

Comments
 (0)