Fix composer config syntax

This commit is contained in:
Shivam Mathur 2021-02-02 06:13:50 +05:30
parent 2ea6ca5b36
commit abefdb50ee
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A
2 changed files with 4 additions and 4 deletions

View File

@ -191,10 +191,10 @@ configure_composer() {
add_log "$cross" "composer" "Could not download composer" add_log "$cross" "composer" "Could not download composer"
exit 1 exit 1
fi fi
composer -q global config process-timeout 0 composer -q config -g process-timeout 0
echo "$composer_bin" >> "$GITHUB_PATH" echo "$composer_bin" >> "$GITHUB_PATH"
if [ -n "$COMPOSER_TOKEN" ]; then if [ -n "$COMPOSER_TOKEN" ]; then
composer -q global config github-oauth.github.com "$COMPOSER_TOKEN" composer -q config -g github-oauth.github.com "$COMPOSER_TOKEN"
fi fi
} }

View File

@ -201,10 +201,10 @@ Function Edit-ComposerConfig() {
Add-Log "$cross" "composer" "Could not download composer" Add-Log "$cross" "composer" "Could not download composer"
exit 1; exit 1;
} }
composer -q global config process-timeout 0 composer -q config -g process-timeout 0
Write-Output $composer_bin | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 Write-Output $composer_bin | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8
if (Test-Path env:COMPOSER_TOKEN) { if (Test-Path env:COMPOSER_TOKEN) {
composer -q global config github-oauth.github.com $env:COMPOSER_TOKEN composer -q config -g github-oauth.github.com $env:COMPOSER_TOKEN
} }
} }