From 694852eddd96ba2206e1406fe5d1f022d6735439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Leli=C3=A8vre?= Date: Mon, 24 Aug 2020 12:31:15 +0200 Subject: [PATCH] Restore TEXINPUTS final double slash Removing the final double slash in TEXINPUTS was a mistake. It is needed to indicate subdirectories, as pointed out by the reviewer. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c0d2cdd..1d8e30d 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ should work. ``` cd /path/to/project git clone https://github.com/KWARC/LaTeX-proposal -echo 'export TEXINPUTS = "$(TEXINPUTS):/path/to/project/LaTeX-proposal:"' >> ~/.bashrc +echo 'export TEXINPUTS = "$(TEXINPUTS):/path/to/project/LaTeX-proposal//:"' >> ~/.bashrc ``` Of course you will have to replace `/path/to/project` with a path appropriate to your system. A simple `git pull` will update you to the newest version.