From b3f126b3bd8e6b9162755beca028c60f5fae2445 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Tue, 9 Jun 2020 18:07:25 -0600 Subject: [PATCH] Deal with Apple and Google both being dumb --- scripts/docker-install.bash | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/scripts/docker-install.bash b/scripts/docker-install.bash index 74f855b..c002340 100755 --- a/scripts/docker-install.bash +++ b/scripts/docker-install.bash @@ -317,6 +317,10 @@ wget -nv https://github.com/watchexec/watchexec/releases/download/1.13.1/watchex dpkg -i watchexec-*.deb rm watchexec-*.deb +cd /tmp +git clone https://github.com/circulosmeos/gdown.pl.git +mv gdown.pl/gdown.pl /usr/bin/gdown + # D cd /tmp wget -nv http://downloads.dlang.org/releases/2.x/2.092.0/dmd_2.092.0-0_amd64.deb @@ -368,11 +372,11 @@ rm -rf snobol4-* # Swift cd /tmp -wget https://swift.org/builds/swift-5.2.4-release/ubuntu2004/swift-5.2.4-RELEASE/swift-5.2.4-RELEASE-ubuntu20.04.tar.gz +gdown "https://drive.google.com/uc?export=download&id=1eE1-VuZz0gv-fITaGVT_r1UunCLjS-JT" swift.tar.gz mkdir /opt/swift -tar -xf swift-*.tar.gz -C /opt/swift --strip-components=2 +tar -xf swift.tar.gz -C /opt/swift --strip-components=2 ln -s /opt/swift/bin/swiftc /usr/bin/swiftc -rm swift-*.tar.gz +rm swift.tar.gz # Kalyn cd /tmp