Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion jpkg
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down