From 06a86bda4639bc79d40f960cc63f510e6742e147 Mon Sep 17 00:00:00 2001 From: Jeanette Sperhac Date: Fri, 22 May 2020 16:47:37 -0400 Subject: [PATCH] Change to anaconda script URL. --- jpkg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jpkg b/jpkg index 1388e6b..ab78fc0 100755 --- a/jpkg +++ b/jpkg @@ -175,7 +175,9 @@ def make_new(args): print("script:%s - %s" % (script, instpath)) if not os.path.isfile(script): print("Downloading", script) - os.system("curl -O https://repo.continuum.io/archive/%s" % script) + # The url changed, bet we couldn't get redirected: + # os.system("curl -O https://repo.continuum.io/archive/%s" % script) + os.system("curl -O https://repo.anaconda.com/archive/%s" % script) if not os.path.isfile(script): print("Error: %s not found and could not download." % script) sys.exit(1)