Skip to content
Snippets Groups Projects
Unverified Commit 8833be15 authored by Denis 'GNUtoo' Carikli's avatar Denis 'GNUtoo' Carikli
Browse files

scripts: download: u-boot: fix u-boot repository URL

Without that fix we have the following warning during the download:
    Cloning into 'u-boot/u-boot'...
    warning: redirecting to https://source.denx.de/u-boot/u-boot.git/



Signed-off-by: default avatarDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
parent 425162db
Branches
Tags
No related merge requests found
......@@ -65,7 +65,7 @@ downloadfor() {
if [ ! -d "${uboot_dir}" ]; then
printf "Download u-boot from upstream:\n"
git clone https://source.denx.de/u-boot/u-boot \
git clone https://source.denx.de/u-boot/u-boot.git \
"${uboot_dir}" || \
rm -Rf "${uboot_dir}"
if [ ! -d "${uboot_dir}" ]; then
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment