diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 10:19:08 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 10:19:08 -0300 |
commit | 52c682bc771ce36b55884ea1f73c839f3f30b564 (patch) | |
tree | 1652230c6f1b0bad9c515ebd30b8e557875ab7f7 /Makefile.bookup | |
parent | 1da09f5568d2bd207f8aa90b0c22f9fd4453c777 (diff) | |
download | bookup-52c682bc771ce36b55884ea1f73c839f3f30b564.tar.gz bookup-52c682bc771ce36b55884ea1f73c839f3f30b564.tar.bz2 |
Fix: Makefile: redirect 'cd' output to /dev/null
Diffstat (limited to 'Makefile.bookup')
-rw-r--r-- | Makefile.bookup | 4 |
1 files 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 |