From 04a48bb51e537d09902f5e5c63f3dc1a306e6d08 Mon Sep 17 00:00:00 2001 From: Ken Fallon Date: Mon, 22 Jun 2026 20:48:50 +0200 Subject: [PATCH] ignore errors from browser --- workflow/hpr-process_episode.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/hpr-process_episode.bash b/workflow/hpr-process_episode.bash index d5464c9..9112d72 100755 --- a/workflow/hpr-process_episode.bash +++ b/workflow/hpr-process_episode.bash @@ -2347,9 +2347,9 @@ hpr-check-ccdn-links ${ep_num} echo_debug "The End" -xdg-open https://archive.org/details/hpr${ep_num} +xdg-open https://archive.org/details/hpr${ep_num} > /dev/null 2>&1 & -xdg-open https://hackerpublicradio.org/eps/hpr${ep_num}/index.html +xdg-open https://hackerpublicradio.org/eps/hpr${ep_num}/index.html > /dev/null 2>&1 & exit 0