From ddf8e57246f6dd3a975bd5883bace839613960aa Mon Sep 17 00:00:00 2001 From: Ahmed Salah Date: Wed, 24 Apr 2024 11:17:18 +0200 Subject: [PATCH] fix the URL of the Thunderstore.io API call to get BepInExPack (#666) --- bepinex-updater | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bepinex-updater b/bepinex-updater index d25c55c..d268b6f 100755 --- a/bepinex-updater +++ b/bepinex-updater @@ -15,7 +15,7 @@ main() { local download_url local remote_updated_at - if ! api_response=$(curl -sfSL -H "accept: application/json" "https://valheim.thunderstore.io/api/experimental/package/denikson/BepInExPack_Valheim/"); then + if ! api_response=$(curl -sfSL -H "accept: application/json" "https://thunderstore.io/api/experimental/package/denikson/BepInExPack_Valheim/"); then fatal "Error: could not retrieve BepInEx release info from Thunderstore.io API" fi download_url=$(jq -r ".latest.download_url" <<< "$api_response" )