OSCAR-code/Building/Linux/clean_rm.sh
2020-02-26 11:01:54 -05:00

20 lines
280 B
Bash
Executable File

#! /bin/bash
set -e
#we need to rm files that have been copied via script
rep="/usr/share/icons/OSCAR"
if [ -d "$rep" ]; then
rm -r $rep
fi
rep="/usr/share/doc/OSCAR"
if [ -d "$rep" ]; then
rm -r $rep
fi
rep="/usr/share/OSCAR"
if [ -d "$rep" ]; then
rm -r $rep
fi