Skip to content

Commit

Permalink
buildx(history): update docker daemon requirement message
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
  • Loading branch information
crazy-max committed Jul 30, 2024
1 parent 11c483e commit 05e3bb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/buildx/history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class History {
throw new Error('Docker is required to export a build record');
}
if (!(await Docker.isDaemonRunning())) {
throw new Error('Docker daemon is not running, skipping build record export');
throw new Error('Docker daemon needs to be running to export a build record');
}
if (!(await this.buildx.versionSatisfies('>=0.13.0'))) {
throw new Error('Buildx >= 0.13.0 is required to export a build record');
Expand Down

0 comments on commit 05e3bb5

Please sign in to comment.