From 2e5e5e1bf45776b43ea404afade8784222fd780f Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 22 Feb 2026 17:37:22 +0100 Subject: [PATCH] Fix outdated reference to /script in comment --- job.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/job.go b/job.go index 32da08d..e533bc2 100644 --- a/job.go +++ b/job.go @@ -40,10 +40,10 @@ func RunJob(wg *sync.WaitGroup, tmp string, info Info, return err } - // Start container but do not run /script yet. We need a way to a) sleep - // in case of an error so the user can analyze the failure and b) detect - // when /script terminates. The simplest solution is to run /script using - // exec while the container just sleeps forever. + // Start container but do not run the script yet. We need a way to a) + // sleep in case of an error so the user can analyze the failure and b) + // detect when the script terminates. The simplest solution is to run the + // script using exec while the container just sleeps forever. cmd := exec.Command("podman", "run", "--rm", "--detach", "--pull", "newer", "--log-driver", "none", // don't log to journal -- 2.52.0