Skip to content

Commit

Permalink
Fix UUOC shellcheck warning
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Feb 8, 2022
1 parent 7854a0c commit 18f3aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/tools/add_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ add_composertool() {
release=$2
prefix=$3
scope=$4
composer_major_version=$(cat /tmp/composer_version | cut -d'.' -f 1)
composer_major_version=$(cut -d'.' -f 1 /tmp/composer_version)
if [ "$composer_major_version" != "1" ]; then
composer_args="--ignore-platform-req=ext-*"
if [[ "$tool" =~ prestissimo|composer-prefetcher ]]; then
Expand Down

0 comments on commit 18f3aba

Please sign in to comment.