Fix error message in logs when image is not present in docker (#34)

Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
Divyanshu Agrawal 2021-03-11 00:30:50 +05:30 committed by GitHub
parent ae3d342a76
commit b5dbf66601
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 19 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View file

@ -227,7 +227,7 @@ async function pullImageFromDocker(): Promise<ImageStorageCheckResult> {
const commandResult: ExecResult = await execute(
await getPodmanPath(),
[ "pull", `docker-daemon:${imageWithTag}` ],
{ ignoreReturnCode: true, failOnStdErr: false }
{ ignoreReturnCode: true, failOnStdErr: false, group: true }
);
if (!commandResult.exitCode) {
foundTags.push(tag);
@ -326,7 +326,7 @@ async function removeDockerImage(): Promise<void> {
async function execute(
executable: string,
args: string[],
execOptions: exec.ExecOptions = {},
execOptions: exec.ExecOptions & { group?: boolean } = {},
): Promise<ExecResult> {
let stdout = "";
let stderr = "";
@ -343,6 +343,12 @@ async function execute(
},
};
if (execOptions.group) {
const groupName = [ executable, ...args ].join(" ");
core.startGroup(groupName);
}
try {
const exitCode = await exec.exec(executable, args, finalExecOptions);
if (execOptions.ignoreReturnCode !== true && exitCode !== 0) {
@ -362,6 +368,13 @@ async function execute(
};
}
finally {
if (execOptions.group) {
core.endGroup();
}
}
}
run()
.catch(core.setFailed)
.finally(() => {