mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
20 lines
280 B
Plaintext
20 lines
280 B
Plaintext
|
#! /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
|
||
|
|