From f905d95e56e326cb3c88cf188390d444265a21a1 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 6 Jun 2024 10:23:23 -0300 Subject: Fix: Makefile: redirect 'cd' output to /dev/null (2) --- Makefile.bookup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile.bookup') diff --git a/Makefile.bookup b/Makefile.bookup index 302ba30..1a30817 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 &> /dev/null && ln -s ../archive - @cd compiled &> /dev/null && 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