From a9be9779c50825403b667d54032115fbf4e1fd96 Mon Sep 17 00:00:00 2001 From: Benex254 Date: Sat, 5 Oct 2024 12:14:45 +0300 Subject: [PATCH] feat(fa): improve fa script --- fa | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fa b/fa index 726a399..beba109 100755 --- a/fa +++ b/fa @@ -1,4 +1,3 @@ #!/usr/bin/env sh -# exec "${PYTHON:-python3}" -Werror -Xdev -m "$(dirname "$(realpath "$0")")/fastanime" "$@" -cd "$(dirname "$(realpath "$0")")" || exit 1 -exec python -m fastanime "$@" +CLI_DIR="$(dirname "$(realpath "$0")")" +exec python -m "$CLI_DIR/fastanime" "$@"