Skip to content

Commit

Permalink
Prefer Docker if installed
Browse files Browse the repository at this point in the history
  • Loading branch information
Bond-009 committed May 26, 2024
1 parent cf5d9e5 commit 411b11e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ set -o xtrace
set -o errexit

# Check for dependencies
if command -v "podman" &>/dev/null; then
if ! command -v "docker" &>/dev/null && command -v "podman" &>/dev/null; then
container_cmd=podman
else
container_cmd=docker
Expand Down

0 comments on commit 411b11e

Please sign in to comment.