File indexing completed on 2024-03-24 17:07:35

0001 #!/bin/bash
0002 #Author: Michail Vourlakos
0003 #Summary: Uninstallation script for Latte Dock Panel
0004 #This script was written and tested on openSuSe Leap 42.1
0005 
0006 if [ -f build/install_manifest.txt ]; then
0007    echo "Uninstallation file exists..."
0008    sudo xargs -d '\n' rm < build/install_manifest.txt
0009 else
0010    echo "Uninstallation file does not exist."
0011 fi