From 0ba9a136cc1775aaba3f8abb6c351696eab048fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Autin?= Date: Wed, 10 May 2023 12:26:42 +0200 Subject: [PATCH] Redirected error output from mv to /dev/null --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7dd525d..92435a9 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ syscall: user_lib $(MAKE) build -C test/syscall_tests/ $(RM) test/syscall_tests/*.o mkdir -p ${TOPDIR}/target/guac/ - find . -name '*.guac' -exec mv {} ${TOPDIR}/target/guac/ \; + find . -name '*.guac' -exec mv {} ${TOPDIR}/target/guac/ 2> /dev/null \; clean: $(MAKE) clean -C userlib/