wip: server is now fully functional, some FIXMEs remain

This commit is contained in:
Michael Hohn
2024-05-26 12:22:36 -07:00
committed by =Michael Hohn
parent f7155eba50
commit ba44db04da
2 changed files with 11 additions and 10 deletions

View File

@@ -45,7 +45,7 @@ func (r *RunnerSingle) worker(wid int) {
slog.Debug("Analysis: running", "job", job)
storage.SetStatus(job.QueryPackId, job.ORL, common.StatusQueued)
cmd := exec.Command(path.Join(cwd, "cmd", "run-analysis.sh"),
cmd := exec.Command(path.Join(cwd, "bin", "run-analysis.sh"),
strconv.FormatInt(int64(job.QueryPackId), 10),
job.QueryLanguage, job.ORL.Owner, job.ORL.Repo)