From 247fbc569ea8febe4a190f540dd73dac1acedbe1 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Thu, 20 Jan 2022 10:44:18 +0100 Subject: [PATCH] silence debugfs Produces tons of chmod/chown errors when run as user --- build-vm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-vm b/build-vm index 58a64f8ed..1f5268ddb 100644 --- a/build-vm +++ b/build-vm @@ -789,7 +789,7 @@ vm_setup() { find "$BUILD_ROOT" -mindepth 1 -maxdepth 1 -print0 | xargs -0 --no-run-if-empty rm -rf if test -z "$CLEAN_BUILD" -a -e "$VM_ROOT" ; then echo "Recovering former build root" - debugfs -f <(echo rdump / "$BUILD_ROOT") "$VM_ROOT" + debugfs -f <(echo rdump / "$BUILD_ROOT") "$VM_ROOT" 2>/dev/null fi fi local clean_build="$CLEAN_BUILD"