aboutsummaryrefslogtreecommitdiff
path: root/tlobsd
blob: 3342be5eb6e0c4f48011b7547115b14117c5a97e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
#
# $TeX Live for OpenBSD, 2024/03/28 $

cmd=$@
export tlobsd=1

# no $cmd
if [[ -z ${cmd} ]];then
    echo "$(basename $0): unknown action"
    exit 1
# tlmgr
elif [[ $1 == "tlmgr" ]];then
    $cmd
    [[ $? -eq 0 ]] && tlobsd-mksymlinks 1> /dev/null
# symlinks
elif [[ $1 == "mksymlinks" ]];then
    tlobsd-mksymlinks $2
# something that is unknown to tlobsd
else
    echo "$1 is not known to $(basename $0).  Try: ${cmd} --help if you need it."
    exit 1
fi