10 lines
190 B
Bash
10 lines
190 B
Bash
#!/bin/sh
|
|
|
|
DIR=%%MIROTALK_HOME%%
|
|
|
|
if [ "$2" = "POST-DEINSTALL" ]; then
|
|
if [ -e ${DIR} ]; then
|
|
echo "==> You should check and manually remove the \"${DIR}\" directory."
|
|
fi
|
|
fi
|