From 8484bfaa65fbc8bb002e17a8211db0bf6db16e23 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Wed, 14 Mar 2018 08:50:48 -0500 Subject: [PATCH] Switch from azure to local api for update checks (#20) * Switch from azure to local api for update checks * DotNetCore branch renamed to develop --- update_ombi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_ombi.sh b/update_ombi.sh index cafd71e..8ebd252 100644 --- a/update_ombi.sh +++ b/update_ombi.sh @@ -196,7 +196,7 @@ declare -i j=5 while [ $i -le $j ] do .log 6 "Checking for latest version" - json=$(curl -sL https://ombiservice.azurewebsites.net/api/update/DotNetCore) + json=$(curl -sL http://$ip:$port/api/v1/Update/develop) .log 8 "json: $json" latestversion=$(grep -Po '(?<="updateVersionString":")([^"]+)' <<< "$json") .log 7 "latestversion: $latestversion"