From 096fb1a1fe8992d10e6542539635a3e423f776e5 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Fri, 6 Sep 2024 16:17:09 +0100 Subject: [PATCH] Make setting the UPDATE_REPO_URI variable consistent with the other REPO_URI variables --- rpi-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi-update b/rpi-update index d901382..278cb3f 100755 --- a/rpi-update +++ b/rpi-update @@ -23,7 +23,7 @@ LINUX_REPO_URI=${LINUX_REPO_URI:-"https://github.com/raspberrypi/linux"} LINUX_REPO_API_URI=${LINUX_REPO_URI/github.com/api.github.com\/repos} UPDATE_SELF=${UPDATE_SELF:-1} -UPDATE_REPO_URI="https://github.com/raspberrypi/rpi-update" +UPDATE_REPO_URI=${UPDATE_REPO_URI:-"https://github.com/raspberrypi/rpi-update"} UPDATE_REPO_CONTENT_URI=${UPDATE_REPO_URI/github.com/raw.githubusercontent.com} UPDATE_URI="${UPDATE_REPO_CONTENT_URI}/master/rpi-update"