From 139f3728d55a35485d20287f1520e99c3807bea7 Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Mon, 07 Mar 2016 08:54:55 -0500 Subject: download/grub: use http:// if git:// fails At the time, Savannah had an issue cloning from git:// for GRUB. They probably fixed this already, but http:// worked alternatively. So add a catch that makes it download from http:// if git:// fails --- diff --git a/resources/scripts/helpers/download/grub b/resources/scripts/helpers/download/grub index eec9120..880d7ff 100755 --- a/resources/scripts/helpers/download/grub +++ b/resources/scripts/helpers/download/grub @@ -35,7 +35,7 @@ rm -Rf "grub/" # ------------------------------------------------------------------------------ # download it using git -git clone git://git.savannah.gnu.org/grub.git +git clone git://git.savannah.gnu.org/grub.git || git clone http://git.savannah.gnu.org/r/grub.git # modifications are required cd "grub/" -- cgit v0.9.1