17 lines
351 B
Bash
Executable File
17 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$CLEAN_DOWNLOADS" != "true" ]; then
|
|
exit
|
|
fi
|
|
|
|
echo "Info|Lidarr event: $lidarr_eventtype" >&2
|
|
|
|
# Handle Lidarr Test event
|
|
if [[ "$lidarr_eventtype" = "Test" ]]; then
|
|
echo "Info|Script was test executed successfully." >&2
|
|
exit 0
|
|
fi
|
|
|
|
echo "Info|Cleaning empty folders" >&2
|
|
find /downloads -type d -empty -print -delete >&2
|