mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-12 15:50:01 -08:00
5 lines
185 B
Bash
Executable File
5 lines
185 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# exec "${PYTHON:-python3}" -Werror -Xdev -m "$(dirname "$(realpath "$0")")/fastanime" "$@"
|
|
cd "$(dirname "$(realpath "$0")")" || exit 1
|
|
exec python -m fastanime "$@"
|