Skip to content

Commit 87acfe1

Browse files
committed
chore: improve error message based on rabbit's suggestion
1 parent 778e2f7 commit 87acfe1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/cli-v3/src/commands/deploy.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,9 @@ async function _deployCommand(dir: string, options: DeployCommandOptions) {
271271

272272
if (result.exitCode !== 0) {
273273
logger.debug(`"docker buildx version" failed (${result.exitCode}):`, result);
274-
throw new Error("Failed to find docker buildx, please install it.");
274+
throw new Error(
275+
"Failed to find docker buildx. Please install it: https://github.com/docker/buildx#installing."
276+
);
275277
}
276278
}
277279

0 commit comments

Comments
 (0)