mirror of
https://github.com/docker/login-action.git
synced 2024-11-09 23:33:24 +01:00
fix: print non-empty stderr
Signed-off-by: eine <eine@users.noreply.github.com>
This commit is contained in:
parent
1cce1654e0
commit
19329d1409
2 changed files with 13 additions and 4 deletions
9
dist/index.js
generated
vendored
9
dist/index.js
generated
vendored
|
@ -242,8 +242,13 @@ function loginStandard(registry, username, password) {
|
|||
input: Buffer.from(password)
|
||||
})
|
||||
.then(res => {
|
||||
if (res.stderr.length > 0 && res.exitCode != 0) {
|
||||
throw new Error(res.stderr.trim());
|
||||
if (res.stderr.length > 0) {
|
||||
if (res.exitCode != 0) {
|
||||
throw new Error(res.stderr.trim());
|
||||
}
|
||||
else {
|
||||
core.warning(res.stderr);
|
||||
}
|
||||
}
|
||||
core.info(`Login Succeeded!`);
|
||||
});
|
||||
|
|
|
@ -43,8 +43,12 @@ export async function loginStandard(registry: string, username: string, password
|
|||
input: Buffer.from(password)
|
||||
})
|
||||
.then(res => {
|
||||
if (res.stderr.length > 0 && res.exitCode != 0) {
|
||||
throw new Error(res.stderr.trim());
|
||||
if (res.stderr.length > 0) {
|
||||
if (res.exitCode != 0) {
|
||||
throw new Error(res.stderr.trim());
|
||||
} else {
|
||||
core.warning(res.stderr);
|
||||
}
|
||||
}
|
||||
core.info(`Login Succeeded!`);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue