blob: b560224aa8c0e3428245ab384b4bc7da14d934a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
#
# $TeX Live for OpenBSD, 2024/03/28 $
cmd=$@
# 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
|