From a7da2168d7e31d88ba8f2ece6fa15b5555457d0e Mon Sep 17 00:00:00 2001 From: Herman Schaaf Date: Sun, 14 Aug 2016 20:27:30 +0800 Subject: [PATCH] Closes #150 First attempt should be true, not false --- download/download.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download/download.go b/download/download.go index 11216f4..f92c058 100644 --- a/download/download.go +++ b/download/download.go @@ -15,7 +15,7 @@ import ( // It is forgiving in terms of the exact path given: the path may have // a scheme or username, which will be trimmed. func Download(path, dest string) (root *vcs.RepoRoot, err error) { - return download(path, dest, false) + return download(path, dest, true) } func download(path, dest string, firstAttempt bool) (root *vcs.RepoRoot, err error) {