From 79963616b31359dc39cc40d6441e722846fe545d Mon Sep 17 00:00:00 2001 From: Alexander Merkle Date: Tue, 17 Oct 2023 14:27:39 +0200 Subject: [PATCH] dockerfiles: fix has_podman routine Signed-off-by: Alexander Merkle [bst: dropped comment about unused routine from commit message] Signed-off-by: Bastian Krause --- dockerfiles/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/build.sh b/dockerfiles/build.sh index 3ab140f22..501667a17 100755 --- a/dockerfiles/build.sh +++ b/dockerfiles/build.sh @@ -22,7 +22,7 @@ has_docker() { } has_podman() { - command -v podman /dev/null 2>&1 + command -v podman >/dev/null 2>&1 } has_buildx() {