9 lines
144 B
Plaintext
9 lines
144 B
Plaintext
|
# This script will clear the TeXLive directory
|
||
|
#
|
||
|
case "${ACTION}" in
|
||
|
post)
|
||
|
rm -rf opt/texlive/2019
|
||
|
rm -r opt/texlive2019-installer
|
||
|
;;
|
||
|
esac
|