From 240928b74b6a3a51ae0e477632bc1dfba9598e2a Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Sat, 3 Jun 2023 13:29:22 +1000 Subject: [PATCH] direct extract or wikiurl from curl --- rename-e-smith-pkg.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rename-e-smith-pkg.sh b/rename-e-smith-pkg.sh index 47d46f8..1ad9150 100755 --- a/rename-e-smith-pkg.sh +++ b/rename-e-smith-pkg.sh @@ -165,13 +165,13 @@ if [[ "$SOURCEORG" == "smecontribs" ]]; then fi # grab WIKILINK from source package -RESPONSE=$(curl "$SILENT" -X 'GET' \ +WIKILINK=$(curl -X 'GET' \ "https://src.koozali.org/api/v1/repos/$SOURCEORG/$SOURCEPKG" \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ - -H "Authorization: token $SOURCEACCESSTOKEN" \ - ) -WIKILINK=$(echo $RESPONSE | jq ' .external_wiki.external_wiki_url') + -H "Authorization: token $SOURCEACCESSTOKEN" \ + | jq ' .external_wiki.external_wiki_url') +if [ $DEBUG ] ; then echo "WIKILINK=$WIKILINK" ; fi # Update the repo with the changed description, bugzilla url and wiki url if [ $DEBUG ] ; then echo "Updating Description, Bug and Wiki links" ; fi @@ -190,7 +190,7 @@ RESPONSE=$(curl "$SILENT" "$checkSSL" -X 'PATCH' \ }, "has_wiki": true, "external_wiki": { - "external_wiki_url": "'"$WIKILINK"'" + "external_wiki_url": "'$WIKILINK'" } }' )