diff options
author | 2022-03-22 20:47:40 +0100 | |
---|---|---|
committer | 2022-03-22 20:47:40 +0100 | |
commit | ec90bd905e5a8eb5d732c688465e5fed58319c03 (patch) | |
tree | 4e9d757806135eb081ec40ce870c361d16fd38e4 | |
parent | b646afffff4da83394e90790b1e776e668d03488 (diff) | |
download | rss-bridge-ec90bd905e5a8eb5d732c688465e5fed58319c03.tar.gz rss-bridge-ec90bd905e5a8eb5d732c688465e5fed58319c03.tar.zst rss-bridge-ec90bd905e5a8eb5d732c688465e5fed58319c03.zip |
Add debug case (#2292)
-rwxr-xr-x | docker-entrypoint.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 92efd9e6..b7d85468 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -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 |