diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 10:23:23 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 10:23:23 -0300 |
commit | f905d95e56e326cb3c88cf188390d444265a21a1 (patch) | |
tree | 53bc7d37077473c24f4654283cffa62c2537327e | |
parent | 52c682bc771ce36b55884ea1f73c839f3f30b564 (diff) | |
download | bookup-f905d95e56e326cb3c88cf188390d444265a21a1.tar.gz bookup-f905d95e56e326cb3c88cf188390d444265a21a1.tar.bz2 |
Fix: Makefile: redirect 'cd' output to /dev/null (2)
-rw-r--r-- | Makefile.bookup | 4 |
1 files changed, 2 insertions, 2 deletions
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 |