mirror of
https://github.com/docker/login-action.git
synced 2024-11-17 17:45:39 +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
7
dist/index.js
generated
vendored
7
dist/index.js
generated
vendored
@ -242,9 +242,14 @@ function loginStandard(registry, username, password) {
|
||||
input: Buffer.from(password)
|
||||
})
|
||||
.then(res => {
|
||||
if (res.stderr.length > 0 && res.exitCode != 0) {
|
||||
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) {
|
||||
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 New Issue
Block a user