push
This commit is contained in:
12
scripts/uninstall
Executable file
12
scripts/uninstall
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
test -f "$INSTALL_LOG" || exit 0
|
||||
|
||||
sort "$INSTALL_LOG" | uniq | \
|
||||
while read file
|
||||
do
|
||||
echo "RM $file"
|
||||
rm -f "$file"
|
||||
rmdir -p "`dirname $file`" 2>/dev/null
|
||||
done
|
||||
rm -f "$INSTALL_LOG"
|
||||
Reference in New Issue
Block a user