From e3f7a4969a3941a2903a932f4d4042553870cc2e Mon Sep 17 00:00:00 2001 From: Zetaphor Date: Sat, 12 Apr 2025 15:16:15 -0500 Subject: [PATCH] Fix fish pid --- 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 e4cd2e0..08973a0 100755 --- a/run-browser-recall.fish +++ b/run-browser-recall.fish @@ -7,5 +7,5 @@ cd (dirname (status filename)) 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 with PID $!" \ No newline at end of file +# Print a simple confirmation message using the correct variable for the last PID +echo "Browser Recall started in background with PID $last_pid" \ No newline at end of file