Bug in creating auth.json
In l3d
script, there is a check, if the auth.json
file is empty:
if [[ -s "${HOME}/.composer/auth.json" ]]; then
It must be:
if [[ ! -s "${HOME}/.composer/auth.json" ]]; then
In l3d
script, there is a check, if the auth.json
file is empty:
if [[ -s "${HOME}/.composer/auth.json" ]]; then
It must be:
if [[ ! -s "${HOME}/.composer/auth.json" ]]; then
mentioned in commit b8459a5d
closed