diff options
author | metamuffin <metamuffin@disroot.org> | 2025-06-26 13:57:45 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-06-26 13:57:45 +0200 |
commit | 7a66a773ee262e28e0acdcce85a0f950832fc92e (patch) | |
tree | e8ce7a735c1e81ba3b8309cf244735864a13609c /book | |
parent | 06546f7cfb1ac66ca04649f4b54db81437074d80 (diff) | |
download | hurrycurry-7a66a773ee262e28e0acdcce85a0f950832fc92e.tar hurrycurry-7a66a773ee262e28e0acdcce85a0f950832fc92e.tar.bz2 hurrycurry-7a66a773ee262e28e0acdcce85a0f950832fc92e.tar.zst |
fix shell redirects in makefiles writing empty files on error; fixes #340
Diffstat (limited to 'book')
-rw-r--r-- | book/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/book/GNUmakefile b/book/GNUmakefile index 09dcdcec..9661290c 100644 --- a/book/GNUmakefile +++ b/book/GNUmakefile @@ -27,7 +27,7 @@ out: @mkdir -p out book.json: book.js - DENO_NO_UPDATE_CHECK=1 $(JSR) $< > $@ + DENO_NO_UPDATE_CHECK=1 $(JSR) $< > $@~ && cp $@~ $@ $(wordlist 2,99,$(png_pages)): $(word 1,$(png_pages)) out/book_01.%.png: book.typ book.json locale/%.ini out |