From f5dc0858b037562a89e2960ce1170d887e9ea1bf Mon Sep 17 00:00:00 2001 From: Donal McBreen Date: Thu, 7 Mar 2024 10:49:32 +0000 Subject: [PATCH] Update error message to include wget --- lib/kamal/cli/server.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kamal/cli/server.rb b/lib/kamal/cli/server.rb index 6dcc6b02..a8a7907b 100644 --- a/lib/kamal/cli/server.rb +++ b/lib/kamal/cli/server.rb @@ -17,7 +17,7 @@ class Kamal::Cli::Server < Kamal::Cli::Base end if missing.any? - raise "Docker is not installed on #{missing.join(", ")} and can't be automatically installed without having root access and the `curl` command available. Install Docker manually: https://docs.docker.com/engine/install/" + raise "Docker is not installed on #{missing.join(", ")} and can't be automatically installed without having root access and either `wget` or `curl`. Install Docker manually: https://docs.docker.com/engine/install/" end end end