From 151fd992282dcbe4fc1eca2931241861f1283350 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sun, 1 Jun 2025 10:14:52 -0700 Subject: [PATCH] use GET instead of links directly for job description --- new_job | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/new_job b/new_job index 60ab410..33b6733 100755 --- a/new_job +++ b/new_job @@ -10,9 +10,11 @@ git config set branch."$NAME".merge refs/heads/"$NAME" git checkout "$NAME" echo "{\"url\":\"$URL\",\"name\":\"$NAME\"}" > job_details.json +git add job_details.json -links -dump "$1" > job_description.txt +GET "$1" > job_description.html +links -dump job_description.html > job_description.txt +rm -f job_description.html -git add job_details.json git add job_description.txt -- 2.39.5