Skip to content

Commit

Permalink
fix docker version check (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
davisagli authored Nov 6, 2024
1 parent e664f3e commit 024afe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/hooks/pre_prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def sanity_check() -> data.SanityCheckResults:
),
data.SanityCheck("git", commands.check_command_is_available, ["git"], "error"),
data.SanityCheck(
"Docker", commands.check_docker_version, ["docker"], "warning"
"Docker (optional)", commands.check_docker_version, ["26"], "warning"
),
]
return sanity.run_sanity_checks(checks)
Expand Down

0 comments on commit 024afe3

Please sign in to comment.