diff options
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 | ||