diff options
author | Robert Alessi <alessi@robertalessi.net> | 2019-03-12 20:28:32 +0100 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2019-03-12 20:28:32 +0100 |
commit | 9519935e55fb341e745c532e43d80ff99ff93712 (patch) | |
tree | a895793015e0ee9889b2d9c62ac88aed08203e1d | |
parent | 9ca857bc0f1489662f38adf5e619d8f54a38ce48 (diff) | |
download | icite-9519935e55fb341e745c532e43d80ff99ff93712.tar.gz |
fixed a harmless bug in Makefile
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ clean: lualatex | |||
61 | rm -rf .backup | 61 | rm -rf .backup |
62 | find -iname "*~" -or -iname "*.pdf" | xargs rm -rf | 62 | find -iname "*~" -or -iname "*.pdf" | xargs rm -rf |
63 | find ./* -type f -iname "Makefile" $(findopts) > ls-R | 63 | find ./* -type f -iname "Makefile" $(findopts) > ls-R |
64 | find ./* -type f -iname "samples/*" $(findoptsi) >> ls-R | 64 | find ./* -type f -iname "*.tex" | grep '/samples/' >> ls-R |
65 | rsync -avPr --files-from=ls-R . .backup | 65 | rsync -avPr --files-from=ls-R . .backup |
66 | rm -rf * | 66 | rm -rf * |
67 | cp -p -r .backup/* . | 67 | cp -p -r .backup/* . |