Cloudron/lychee-sync.sh

11 lines
266 B
Bash
Raw Normal View History

2023-07-09 19:09:56 +00:00
#!/bin/bash
# Run the PHP command
php /app/code/artisan lychee:sync /app/code/public/uploads/import/
# Check if the PHP command succeeded
if [ $? -eq 0 ]; then
# Delete all files and folders inside the directory
rm -rf /app/code/public/uploads/import/*
fi