Skip to content

Commit 2d40568

Browse files
committed
fix(makefile): correct yes args.
1 parent bd82cc5 commit 2d40568

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ endif
1919
.PHONY: all cls doc clean FORCE_MAKE copy
2020

2121
$(PACKAGE).pdf: cls FORCE_MAKE
22-
yes -y y | $(LATEXMK) -xelatex $(PACKAGE).dtx
22+
$(LATEXMK) -xelatex $(PACKAGE).dtx
2323

2424
$(CLSFILE): $(SOURCES)
25-
yes -y y | xetex $(PACKAGE).ins
25+
yes y | xetex $(PACKAGE).ins
2626

2727
cls: $(CLSFILE)
2828

@@ -47,10 +47,10 @@ copy:
4747
cp bitart.cls $(SCAFFOLDDIR)/proposal-report
4848

4949
dev:
50-
ls bithesis.dtx | entr -s 'yes -y y | make doc && make copy'
50+
ls bithesis.dtx | entr -s 'yes y | make doc && make copy'
5151

5252
dev-doc:
53-
ls bithesis.dtx | entr -s 'make clean-all && yes -y y | make doc && open bithesis.pdf'
53+
ls bithesis.dtx | entr -s 'make clean-all && yes y | make doc && open bithesis.pdf'
5454

5555
pkg: doc
5656
zip -r bithesis.zip bithesis.{ins,dtx,pdf} README.md

0 commit comments

Comments
 (0)