From e373768a793b9b16fdfef15cc4de6e014b1df5e9 Mon Sep 17 00:00:00 2001 From: Paul Madden Date: Thu, 12 Dec 2024 00:15:39 +0000 Subject: [PATCH] Use curl -s --- .github/scripts/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/publish.sh b/.github/scripts/publish.sh index 8da88fd72..ef39948e5 100755 --- a/.github/scripts/publish.sh +++ b/.github/scripts/publish.sh @@ -13,5 +13,5 @@ ids=( a6f1f3ab481647dc492ab577cb7e60522efded549caf0544ba863d0a72958179/68747470733a2f2f616e61636f6e64612e6f72672f7566732d636f6d6d756e6974792f7577746f6f6c732f6261646765732f6c61746573745f72656c656173655f646174652e737667 ) for id in ${ids[*]}; do - curl -X PURGE https://camo.githubusercontent.com/$id | jq . + curl -s -X PURGE https://camo.githubusercontent.com/$id | jq . done