You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
342 B
Bash
12 lines
342 B
Bash
#!/bin/bash
|
|
#Author: Michail Vourlakos
|
|
#Summary: Uninstallation script for Latte Dock Panel
|
|
#This script was written and tested on openSuSe Leap 42.1
|
|
|
|
if [ -f build/install_manifest.txt ]; then
|
|
echo "Uninstallation file exists..."
|
|
sudo xargs -d '\n' rm < build/install_manifest.txt
|
|
else
|
|
echo "Uninstallation file does not exist."
|
|
fi
|