mirror of
https://github.com/limosek/zaf.git
synced 2024-11-10 20:57:21 +01:00
11 lines
165 B
Bash
11 lines
165 B
Bash
#!/bin/sh
|
|
|
|
case $1 in
|
|
install)
|
|
if [ -d /usr/lib/zaf ]; then
|
|
echo "Do zaf self-remove first! Cannot mix packaged and non-packaged version!"
|
|
exit 2
|
|
fi
|
|
;;
|
|
esac
|