Add debug case (#2292)

This commit is contained in:
Bocki 2022-03-22 20:47:40 +01:00 committed by GitHub
parent b646afffff
commit ec90bd905e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@ while IFS= read -r -d '' file; do
whitelist.txt) yes | cp "$file" /app/ ;
chown www-data:www-data "/app/$file_name";
printf "Custom whitelist.txt added.\n";;
DEBUG) yes | cp "$file" /app/ ;
chown www-data:www-data "/app/$file_name";
printf "DEBUG file added.\n";;
esac
done