From 9bb9d9268ba2ad888274324837ab2fef0ece8c07 Mon Sep 17 00:00:00 2001 From: M Parker Date: Tue, 2 Jan 2018 09:01:21 -0500 Subject: [PATCH] Clone from github over https This should hopefully fix the following Travis CI build error: ``` fatal: unable to access 'http://github.com/simonmichael/shelltestrunner/': Failed to connect to github.com port 443: Connection timed out ``` (see https://travis-ci.org/simonmichael/hledger/jobs/323972730#L487 ) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c319ea9df..656b87fdf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -106,7 +106,7 @@ install: # command output is hidden as they complete # shelltestrunner, need unreleased installable version #- git clone http://github.com/simonmichael/shelltestrunner #- if [[ ! -d shelltestrunner ]]; then git clone http://github.com/simonmichael/shelltestrunner; fi - - git clone http://github.com/simonmichael/shelltestrunner + - git clone https://github.com/simonmichael/shelltestrunner - if [[ ! -x ~/.local/bin/shelltest ]]; then stack install --stack-yaml=shelltestrunner/stack.yaml; fi - shelltest --version