10 lines
165 B
Text
10 lines
165 B
Text
|
# This script will clear the TeXLive directory
|
||
|
# and the /etc/profile.d/texlive.sh
|
||
|
#
|
||
|
case "${ACTION}" in
|
||
|
pre)
|
||
|
rm -rf /opt/texlive/2013
|
||
|
;;
|
||
|
post)
|
||
|
;;
|
||
|
esac
|