From 14190f9e6c290383676a4332ff5c71e9cc83c66a Mon Sep 17 00:00:00 2001 From: David Steele Date: Mon, 3 Dec 2018 12:41:53 -0500 Subject: [PATCH] Update URL for Docker install. As usual the old URL started providing a broken version of Docker rather than producing a clear error message. This happens once a year or so. --- doc/xml/release.xml | 4 ++++ test/Vagrantfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/xml/release.xml b/doc/xml/release.xml index e943c1fa2..e4e61ebcf 100644 --- a/doc/xml/release.xml +++ b/doc/xml/release.xml @@ -159,6 +159,10 @@

Allow arbitrary multiplier and flush character in IoTestFilterMultiply.

+ +

Update URL for Docker install.

+
+

Add testRepoPath() to let C unit tests know where the code repository is located.

diff --git a/test/Vagrantfile b/test/Vagrantfile index a387163ab..68d7dcc70 100644 --- a/test/Vagrantfile +++ b/test/Vagrantfile @@ -85,7 +85,7 @@ Vagrant.configure(2) do |config| #--------------------------------------------------------------------------------------------------------------------------- echo 'Install Docker' && date - curl -fsSL test.docker.com | sh + curl -fsSL https://get.docker.com | sh sudo usermod -aG docker vagrant #---------------------------------------------------------------------------------------------------------------------------