From 357748dfffdcbe3d8813af77c0efaefafe3f6872 Mon Sep 17 00:00:00 2001 From: Raphael Defosseux <raphael.defosseux@eurecom.fr> Date: Wed, 7 Oct 2020 11:36:09 +0200 Subject: [PATCH] BUILD: fix check when not in a container Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr> --- cmake_targets/tools/build_helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake_targets/tools/build_helper b/cmake_targets/tools/build_helper index 58eaedc0679..7c50bc106ae 100755 --- a/cmake_targets/tools/build_helper +++ b/cmake_targets/tools/build_helper @@ -41,7 +41,7 @@ KERNEL_VERSION=$(uname -r | cut -d '.' -f1) KERNEL_MAJOR=$(uname -r | cut -d '.' -f2) #check if we run inside a container -IS_CONTAINER=`egrep -c "docker|podman|kubepods" /proc/self/cgroup` +IS_CONTAINER=`egrep -c "docker|podman|kubepods" /proc/self/cgroup || true` #sudo is not needed inside a container if [ $IS_CONTAINER -eq 0 ] then -- GitLab