Fixing remove files (#210)

This commit is contained in:
Mayte Ariza
2019-07-15 09:43:08 +02:00
committed by AlfonsoRBJ
parent 0bf9766883
commit 7c11a8568c
+2
View File
@@ -85,8 +85,10 @@ apply_exclusion_data() {
remove_data_files() {
for del_file in "${PERMANENT_DATA_DEL[@]}"; do
if [ -e ${del_file} ]
then
print "Removing ${del_file}"
exec_cmd "rm ${del_file}"
fi
done
}