mirror of
https://github.com/YellowJacketLinux/LFS.git
synced 2025-01-23 22:42:17 +08:00
8 lines
88 B
Bash
8 lines
88 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
tlmgr update --self
|
||
|
|
||
|
if [ $? -eq 0 ]; then
|
||
|
tlmgr update --all
|
||
|
fi
|