From fcfed00d5b2b3f3865c4c3717a856e57a420c889 Mon Sep 17 00:00:00 2001 From: Settel Date: Sun, 4 Jun 2023 11:40:31 +0200 Subject: [PATCH] feat: check for slirp4netns tool during setup (needed for rootless Podman) --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28e6dab..4f30fa5 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,9 @@ info: setup: @echo "I checking for tools" - @for binary in go go-bindata tmux node yarn npx podman pexec inotifyloop inotifywait newuidmap; do \ + @for binary in go go-bindata tmux node yarn npx \ + pexec inotifyloop inotifywait \ + podman newuidmap slirp4netns; do \ echo -n " $$binary: " ; \ if ! which "$$binary"; then \ echo "not found" ;\