You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
404 B

#!/usr/bin/with-contenv bash
echo "Setting up Recyclarr"
# Download Recyclarr
if [ ! -f /recyclarr/recyclarr ]; then
mkdir -p /recyclarr
wget -q "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-x64.zip" -O "/recyclarr/recyclarr.zip"
unzip -o /recyclarr/recyclarr.zip -d /recyclarr &>/dev/null
chmod u+rx /recyclarr/recyclarr
fi
echo "Complete"
exit $?