Files
wizarr/scripts/log-file-changes.sh
admin 04078ac02b Add multiple statements to logging_api and utilities_api routes
- Update the `.pylintrc` file to include the `multiple-statements` rule.
- In the `api/routes/__init__.py` file, add the `utilities_api` namespace.
- In the `api/routes/logging_api.py` file, update the `log_file` path.
- In the `api/routes/plex_api.py` file, remove the `send_message` and `test_connection` functions, and update the code to send a message and start a background task.
- Add the `utilities_api` file to the routes folder.
- Update the `app/models/wizarr/invitations.py` file to handle zero duration values.
- Update the `app/static/package-lock.json` file to include new dependencies.
- Update the `app/static/package.json` file to include new dependencies.
- Update the `app/static/postcss.config.cjs` file to fix the autoprefixer issue.
- Update the `app/static/src/ts/api/index.ts` file to include the new utilities file.
- Update the `app/static/src/ts/api/settings.ts` file to fix a syntax error.
2023-08-11 01:29:19 +01:00

9 lines
172 B
Bash
Executable File

#!/bin/bash
directory_path="../"
fswatch -r -e ".*" -i "\\.log$" "$directory_path" |
while read filename
do
echo "File '$filename' was modified."
done