|
|
|
@ -152,7 +152,7 @@ function getVersion() {
|
|
|
|
|
if (res.stderr.length > 0 && res.exitCode != 0) {
|
|
|
|
|
throw new Error(res.stderr.trim());
|
|
|
|
|
}
|
|
|
|
|
return parseVersion(res.stdout);
|
|
|
|
|
return parseVersion(res.stdout.trim());
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
@ -473,7 +473,7 @@ function run() {
|
|
|
|
|
})
|
|
|
|
|
.then(res => {
|
|
|
|
|
if (res.stderr.length > 0 && res.exitCode != 0) {
|
|
|
|
|
throw new Error(`buildx bake failed with: ${res.stderr.match(/(.*)\s*$/)[0].trim()}`);
|
|
|
|
|
throw new Error(`buildx failed with: ${res.stderr.match(/(.*)\s*$/)[0].trim()}`);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
const imageID = yield buildx.getImageID();
|
|
|
|
|