Skip to content

Commit bb071b8

Browse files
smancilltarleb
authored andcommitted
table-short-captions: improve make clean
Add the -f flag to rm to avoid "no such file" messages and the non-zero exit code.
1 parent b868945 commit bb071b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

table-short-captions/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ sample.pdf: sample.md
2020
@pandoc -s $(LF) $(F) -t latex $< -o $@
2121

2222
clean:
23-
rm -v *.aux *.dvi *.fdb_latexmk *.fls *.log *.lot *.ps *.pdf sample.tex | true
23+
rm -fv *.aux *.dvi *.fdb_latexmk *.fls *.log *.lot *.ps *.pdf sample.tex
2424

2525
.PHONY: test test-with-crossref clean

0 commit comments

Comments
 (0)