Skip to content

Commit ac719dc

Browse files
authored
Merge pull request #1502 from basecamp/remove-next-container-special-case
Rely on semver for version checks
2 parents 2a8d561 + 521425c commit ac719dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/kamal/cli/proxy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def boot
1313

1414
version = capture_with_info(*KAMAL.proxy.version).strip.presence
1515

16-
if version && version != "next" && Kamal::Utils.older_version?(version, Kamal::Configuration::PROXY_MINIMUM_VERSION)
16+
if version && Kamal::Utils.older_version?(version, Kamal::Configuration::PROXY_MINIMUM_VERSION)
1717
raise "kamal-proxy version #{version} is too old, run `kamal proxy reboot` in order to update to at least #{Kamal::Configuration::PROXY_MINIMUM_VERSION}"
1818
end
1919
execute *KAMAL.proxy.start_or_run

0 commit comments

Comments
 (0)