Skip to content

Commit 70902df

Browse files
committed
renamed the chocolatey-tinytex repo
1 parent 251bdb9 commit 70902df

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

appveyor.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,14 @@ for:
5454

5555
deploy:
5656
provider: GitHub
57-
repository: yihui/chocolatey-tinytex
57+
repository: yihui/tinytex-windows
5858
tag: $(TINYTEX_TAG)
5959
release: TinyTeX $(TINYTEX_TAG)
60-
description: '`TinyTeX-0.zip` contains the `infraonly` scheme of TeX Live, without any LaTeX packages. `TinyTeX-1.zip` contains enough LaTeX packages to compile R Markdown documents. `TinyTeX.zip` contains even more LaTeX packages. Please see https://github.com/yihui/chocolatey-tinytex for more info.'
60+
description: >
61+
`TinyTeX-0.zip` contains the `infraonly` scheme of TeX Live, without any
62+
LaTeX packages. `TinyTeX-1.zip` contains enough LaTeX packages to compile
63+
R Markdown documents. `TinyTeX.zip` contains even more LaTeX packages.
64+
Please see https://github.com/yihui/tinytex-windows for more info.
6165
auth_token:
6266
secure: 7J9/ZS/EeHhAuxS+mtlT7mPKyLSEmXHRXK1fhBGSptLTmcIFqTbdRHRcTcgEB89n
6367
on:
@@ -82,7 +86,7 @@ for:
8286
- R CMD INSTALL .
8387

8488
build_script:
85-
- "sed -i '' 's|# finished base install|tar zcf TinyTeX-0.tgz -C ~/Library TinyTeX|' tools/install-unx.sh"
89+
- sed -i '' 's|# finished base|tar zcf ${APPVEYOR_BUILD_FOLDER}/TinyTeX-0.tgz -C ~/Library TinyTeX|' tools/install-unx.sh
8690
- ./tools/install-unx.sh
8791
- tar zcf TinyTeX-1.tgz -C ~/Library TinyTeX
8892

@@ -114,9 +118,9 @@ for:
114118
- R CMD INSTALL .
115119

116120
build_script:
117-
- "sed -i 's|# finished base install|tar zcf TinyTeX-0.tar.gz -C ~ .TinyTeX|' tools/install-unx.sh"
121+
- sed -i 's|# finished base|tar zcf ${APPVEYOR_BUILD_FOLDER}/TinyTeX-0.tar.gz -C ~ .TinyTeX|' tools/install-unx.sh
118122
- ./tools/install-unx.sh
119-
- tar zcf TinyTeX-1.tgz -C ~/Library TinyTeX
123+
- tar zcf TinyTeX-1.tar.gz -C ~ .TinyTeX
120124

121125
test_script:
122126
- export PATH="$HOME/bin:$PATH"

tools/install-unx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rm -rf $TEXDIR
1616
mkdir -p $TEXDIR
1717
mv texlive/* $TEXDIR
1818
rm -r texlive
19-
# finished base install
19+
# finished base
2020

2121
$TEXDIR/bin/*/tlmgr install $(download https://yihui.org/gh/tinytex/tools/pkgs-custom.txt | tr '\n' ' ')
2222

tools/release-github.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ process_file = function(file, FUN = identity, x = xfun::read_utf8(file)) {
1212
}
1313

1414
system(sprintf(
15-
'git clone https://%[email protected]/yihui/chocolatey-tinytex.git',
15+
'git clone https://%[email protected]/yihui/tinytex-windows.git',
1616
Sys.getenv('GH_TOKEN')
1717
))
18-
xfun::in_dir('chocolatey-tinytex', {
18+
xfun::in_dir('tinytex-windows', {
1919
m = tools::md5sum('../TinyTeX-1.zip')
2020
f = function(x, r, val) {
2121
if (length(i <- grep(r, x)) != 1) stop('There must be a line that matches ', r)

0 commit comments

Comments
 (0)