From 3596bb2a0881cf49c8490ff7783284da4d0ee811 Mon Sep 17 00:00:00 2001 From: Zetaphor Date: Sat, 12 Apr 2025 15:07:03 -0500 Subject: [PATCH] Update fish runner --- run-browser-recall.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-browser-recall.fish b/run-browser-recall.fish index 769e6e6..bbf2edb 100755 --- a/run-browser-recall.fish +++ b/run-browser-recall.fish @@ -4,8 +4,8 @@ cd (dirname (status filename)) # Activate the virtual environment and run main.py silently -source ./venv/bin/activate -python main.py > /dev/null 2>&1 & +source (dirname (status filename))/.venv/bin/activate.fish +python src/main.py > /dev/null 2>&1 & # Print a simple confirmation message echo "Browser Recall started in background" \ No newline at end of file