From d59cf68e629924c88740540f6fe357a6bb13d2dc Mon Sep 17 00:00:00 2001 From: MichaIng <28480705+MichaIng@users.noreply.github.com> Date: Sat, 8 Sep 2018 12:43:28 +0200 Subject: [PATCH 1/3] v6.15 + DietPi-Software | OpenBazaar: Tiny fix --- dietpi/dietpi-software | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dietpi/dietpi-software b/dietpi/dietpi-software index 88e01ab25b..388c7b57bc 100644 --- a/dietpi/dietpi-software +++ b/dietpi/dietpi-software @@ -3860,7 +3860,7 @@ We work around this error by running APT a second time. Please do not worry and Download_Install "$INSTALL_URL_ADDRESS" /usr/local/ - mkdir -p $G_FP_DIETPI_USERDATA/go.sh + mkdir -p $G_FP_DIETPI_USERDATA/go cat << _EOF_ > /etc/bashrc.d/go.sh #!/bin/bash export GOPATH=$G_FP_DIETPI_USERDATA/go From 7b55da7f6f602bd5259b4abcb10970ab995cbcad Mon Sep 17 00:00:00 2001 From: MichaIng <28480705+MichaIng@users.noreply.github.com> Date: Sat, 8 Sep 2018 12:46:38 +0200 Subject: [PATCH 2/3] v6.15 + META | Add OpenBazaar to README.md software sources list --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7fc984868f..22d13fcb22 100644 --- a/README.md +++ b/README.md @@ -219,3 +219,6 @@ FreshRSS Folding@Home - https://github.com/FoldingAtHome + +OpenBazaar +- https://github.com/OpenBazaar/openbazaar-go From e3ec25781646cbd8cac39c25e2e60548f05c2e4c Mon Sep 17 00:00:00 2001 From: MichaIng <28480705+MichaIng@users.noreply.github.com> Date: Sat, 8 Sep 2018 21:48:07 +0200 Subject: [PATCH 3/3] v6.15 + DietPi-Software | OpenBazaar: Use official golang Go download source and install current Go v1.11 --- dietpi/dietpi-software | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dietpi/dietpi-software b/dietpi/dietpi-software index 388c7b57bc..eb6482e985 100644 --- a/dietpi/dietpi-software +++ b/dietpi/dietpi-software @@ -3844,17 +3844,17 @@ We work around this error by running APT a second time. Please do not worry and # x86_64 if (( $G_HW_ARCH == 10 )); then - INSTALL_URL_ADDRESS='https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz' + INSTALL_URL_ADDRESS='https://dl.google.com/go/go1.11.linux-amd64.tar.gz' # ARMv8 elif (( $G_HW_ARCH == 3 )); then - INSTALL_URL_ADDRESS='https://storage.googleapis.com/golang/go1.9.linux-arm64.tar.gz' + INSTALL_URL_ADDRESS='https://dl.google.com/go/go1.11.linux-arm64.tar.gz' # ARMv6/7 else - INSTALL_URL_ADDRESS='https://storage.googleapis.com/golang/go1.9.linux-armv6l.tar.gz' + INSTALL_URL_ADDRESS='https://dl.google.com/go/go1.11.linux-armv6l.tar.gz' fi