Skip to content

Commit a6cde46

Browse files
committed
Avoid texlive files ending up in site
1 parent 3598e7c commit a6cde46

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ ifndef SPELL
1919
endif
2020

2121
texlive:
22-
mkdir -p $(CACHE_FOLDER) texlive-installer $(TEXLIVEDIR)
22+
mkdir -p $(CACHE_FOLDER) _texlive-installer $(TEXLIVEDIR)
2323
wget -q http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz
24-
tar -xf install-tl-unx.tar.gz -C ./texlive-installer --strip 1
24+
tar -xf install-tl-unx.tar.gz -C ./_texlive-installer --strip 1
25+
rm install-tl-unx.tar.gz
2526
printf '%s\n' \
2627
"selected_scheme scheme-basic" \
2728
"TEXDIR $(TEXLIVEDIR)" \
@@ -31,8 +32,8 @@ texlive:
3132
"binary_x86_64-linux 1" \
3233
"tlpdbopt_install_docfiles 0" \
3334
"tlpdbopt_install_srcfiles 0" \
34-
> ./texlive.profile
35-
./texlive-installer/install-tl --profile ./texlive.profile
35+
> _texlive.profile
36+
_texlive-installer/install-tl --profile _texlive.profile
3637
tlmgr install parskip titlesec enumitem
3738

3839
pdf: $(CV_TEX)

0 commit comments

Comments
 (0)