diff options
author | Robert Alessi <alessi@robertalessi.net> | 2024-03-28 09:23:21 +0100 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2024-03-28 09:23:21 +0100 |
commit | 1b63fcabc2cb3c100c1a50136ce1e160e042b332 (patch) | |
tree | 05f25fdc8305a86752906a411d81554d24e6e9dc /tlobsd | |
parent | 910f40efb89c71fd39512417d8dc7b54d8f7a773 (diff) | |
download | texlive-openbsd-1b63fcabc2cb3c100c1a50136ce1e160e042b332.tar.gz |
new tlobsd wrapper
Diffstat (limited to 'tlobsd')
-rw-r--r-- | tlobsd | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # $TeX Live for OpenBSD, 2024/03/28 $ | ||
4 | |||
5 | cmd=$@ | ||
6 | |||
7 | # tlmgr | ||
8 | if [[ $1 == "tlmgr" ]];then | ||
9 | $cmd | ||
10 | [[ $? -eq 0 ]] && mktexobsdsymlinks 1> /dev/null | ||
11 | fi | ||
12 | |||
13 | # symlinks | ||
14 | if [[ $1 == "mksymlinks" ]];then | ||
15 | tlobsd-mksymlinks $2 | ||
16 | fi | ||