10 lines
170 B
Plaintext
10 lines
170 B
Plaintext
|
#!/bin/sh
|
||
|
case "$ACTION" in
|
||
|
pre)
|
||
|
# remove the openjdk.sh from xbps-triggers
|
||
|
if [ -e "./etc/profile.d/openjdk.sh" ]; then
|
||
|
rm "./etc/profile.d/openjdk.sh"
|
||
|
fi
|
||
|
;;
|
||
|
esac
|