mirror of
https://github.com/elyby/accounts.git
synced 2024-11-13 08:46:17 +05:30
9 lines
170 B
Bash
9 lines
170 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -n "$API_TOKEN" ]
|
||
|
then
|
||
|
php /usr/local/bin/composer.phar config -g github-oauth.github.com $API_TOKEN
|
||
|
fi
|
||
|
|
||
|
exec php /usr/local/bin/composer.phar "$@"
|