From ec1ef11c92e176da42b35d2016499ccdd02ca1b0 Mon Sep 17 00:00:00 2001 From: popcornmix Date: Mon, 12 Aug 2013 20:44:42 +0100 Subject: [PATCH] Allow REPO_URI to be overridden. See: https://github.com/Hexxeh/rpi-update/issues/104 --- rpi-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi-update b/rpi-update index f780efc..e899768 100755 --- a/rpi-update +++ b/rpi-update @@ -3,7 +3,7 @@ set -o nounset set -o errexit -REPO_URI="https://github.com/Hexxeh/rpi-firmware" +REPO_URI=${REPO_URI:-"https://github.com/Hexxeh/rpi-firmware"} UPDATE_SELF=${UPDATE_SELF:-1} UPDATE_URI="https://github.com/Hexxeh/rpi-update/raw/master/rpi-update"