diff options
author | Robert Alessi <alessi@robertalessi.net> | 2024-06-08 21:27:10 +0200 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2024-06-08 21:27:10 +0200 |
commit | 341dc984c3f73f91d8144ea046e296ab0c57c3f2 (patch) | |
tree | 13dbb1504a8f33c019657868330fa765c96dfc0c /tlobsd | |
parent | 72bf819e1ddaa9c6a9b010bcbb69a9a9a3f201fc (diff) | |
download | texlive-openbsd-341dc984c3f73f91d8144ea046e296ab0c57c3f2.tar.gz |
TLObsd now provides biber
Diffstat (limited to 'tlobsd')
-rw-r--r-- | tlobsd | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,6 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # | 2 | # |
3 | # $TeX Live for OpenBSD, 2024/04/27 $ | 3 | # $TeX Live for OpenBSD, 2024/06/08 $ |
4 | 4 | ||
5 | cmd=$@ | 5 | cmd=$@ |
6 | export tlobsd=1 | 6 | export tlobsd=1 |
@@ -13,6 +13,7 @@ Known actions to \033[1mtlobsd\033[0m: | |||
13 | \033[4mtlmgr\033[0m\t\tThis action accepts the exact same options and arguments as \033[4mtlmgr(1)\033[0m. | 13 | \033[4mtlmgr\033[0m\t\tThis action accepts the exact same options and arguments as \033[4mtlmgr(1)\033[0m. |
14 | \033[4mmksymlinks\033[0m\tUpdates all existing links in \033[4m${TLBINPATH}\033[0m | 14 | \033[4mmksymlinks\033[0m\tUpdates all existing links in \033[4m${TLBINPATH}\033[0m |
15 | \t\tand installs new links. | 15 | \t\tand installs new links. |
16 | \033[4mgetbiber\033[0m\tInstalls or updates biber executable for OpenBSD. | ||
16 | \033[4mversion\033[0m\tGives version information. | 17 | \033[4mversion\033[0m\tGives version information. |
17 | " | 18 | " |
18 | } | 19 | } |
@@ -31,6 +32,9 @@ elif [[ $1 == "tlmgr" ]];then | |||
31 | # symlinks | 32 | # symlinks |
32 | elif [[ $1 == "mksymlinks" ]];then | 33 | elif [[ $1 == "mksymlinks" ]];then |
33 | tlobsd-mksymlinks $2 | 34 | tlobsd-mksymlinks $2 |
35 | # getbiber | ||
36 | elif [[ $1 == "getbiber" ]];then | ||
37 | tlobsd-getbiber | ||
34 | # version | 38 | # version |
35 | elif [[ $1 == "version" ]];then | 39 | elif [[ $1 == "version" ]];then |
36 | TL_RELEASE=$(tlmgr version | awk 'FNR == 3 { print $0 }') | 40 | TL_RELEASE=$(tlmgr version | awk 'FNR == 3 { print $0 }') |