Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: improve error message based on rabbit's suggestion
  • Loading branch information
ghostdevv committed Nov 17, 2024
commit 87acfe1bd0820857b47aed757fc44d70276524d0
4 changes: 3 additions & 1 deletion packages/cli-v3/src/commands/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,9 @@ async function _deployCommand(dir: string, options: DeployCommandOptions) {

if (result.exitCode !== 0) {
logger.debug(`"docker buildx version" failed (${result.exitCode}):`, result);
throw new Error("Failed to find docker buildx, please install it.");
throw new Error(
"Failed to find docker buildx. Please install it: https://github.com/docker/buildx#installing."
);
}
}

Expand Down