From 52c682bc771ce36b55884ea1f73c839f3f30b564 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 6 Jun 2024 10:19:08 -0300 Subject: Fix: Makefile: redirect 'cd' output to /dev/null --- Makefile.bookup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.bookup b/Makefile.bookup index 8a9460b..302ba30 100644 --- a/Makefile.bookup +++ b/Makefile.bookup @@ -152,8 +152,8 @@ bookdown_html: # Add symlink to the archive and to the slides # This symlink is useful for checking things in localhost # But it tends to be replaced during remote deployment - @cd compiled && ln -s ../archive - @cd compiled && ln -s ../slides + @cd compiled &> /dev/null && ln -s ../archive + @cd compiled &> /dev/null && ln -s ../slides bookdown_pdf: # Cleanup old builds -- cgit v1.2.3