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