From ac8b8a98819ab98024d1d504ba6d7af9da9f59c9 Mon Sep 17 00:00:00 2001 From: Zetaphor Date: Sun, 26 Jan 2025 01:08:03 -0600 Subject: [PATCH] Set pwd on fish script --- run-browser-recall.fish | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run-browser-recall.fish b/run-browser-recall.fish index d30889f..9817fdd 100755 --- a/run-browser-recall.fish +++ b/run-browser-recall.fish @@ -1,5 +1,8 @@ #!/usr/bin/env fish +# Change to the script's directory +cd (dirname (status filename)) + # Activate the virtual environment and run main.py silently vf activate general python main.py > /dev/null 2>&1 &