Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
0n1cOn3
3dcebcf1fc
removed hardcoded path, added dynamic path instead
- Removed hardcoded path
- Added dynamic path
2024-11-06 07:32:06 +01:00

View file

@ -1,2 +1,4 @@
#!/bin/bash
python3 "/mnt/sda2/Work/Projects/yt-dlp-proxy/main.py" $@
# Get the directory where the script is located
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
python3 "$SCRIPT_DIR/main.py" "$@"