From f211862507b787917726308aef48bbd7c2bbe401 Mon Sep 17 00:00:00 2001 From: bas smit Date: Sun, 15 Aug 2021 17:49:49 +0200 Subject: [PATCH] builder: remove root check `set -e` will now make things fail if docker doesn't work. Root check breaks ci --- build-all.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-all.sh b/build-all.sh index a4b31e6..db5e710 100755 --- a/build-all.sh +++ b/build-all.sh @@ -27,11 +27,6 @@ function build() { if docker -v |grep -q podman; then echo "using podman, test likely wont work" PODMAN=1 -else - if [ $EUID -ne 0 ]; then - >&2 echo "requires root" - exit 1 - fi fi TAG=""