We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d791e46 commit 6668cc5Copy full SHA for 6668cc5
src/buildx/history.ts
@@ -49,6 +49,9 @@ export class History {
49
if (!(await Docker.isAvailable())) {
50
throw new Error('Docker is required to export a build record');
51
}
52
+ if (!(await this.buildx.versionSatisfies('>=0.13.0'))) {
53
+ throw new Error('Buildx >= 0.13.0 is required to export a build record');
54
+ }
55
56
let builderName: string = '';
57
let nodeName: string = '';
0 commit comments