Skip to content
Merged
Show file tree
Hide file tree
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: 2 additions & 2 deletions easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
from easybuild.tools.version import this_is_easybuild, VERBOSE_VERSION, VERSION


EASYBUILD_SOURCES_URL = 'http://sources.easybuild.io'
EASYBUILD_SOURCES_URL = 'https://sources.easybuild.io'

MODULE_ONLY_STEPS = [MODULE_STEP, PREPARE_STEP, READY_STEP, POSTITER_STEP, SANITYCHECK_STEP]

Expand Down Expand Up @@ -775,7 +775,7 @@ def obtain_file(self, filename, extension=False, urls=None, download_filename=No
source_urls = []
source_urls.extend(self.cfg['source_urls'])

# add sources.easybuild.io as fallback source URL
# add https://sources.easybuild.io as fallback source URL
source_urls.append(EASYBUILD_SOURCES_URL + '/' + os.path.join(name_letter, self.name))

mkdir(targetdir, parents=True)
Expand Down
2 changes: 1 addition & 1 deletion test/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -1398,7 +1398,7 @@ def test_obtain_file(self):
shutil.rmtree(tmpdir)

def test_fallback_source_url(self):
"""Check whether downloading from fallback source URL http://sources.easybuild.io works."""
"""Check whether downloading from fallback source URL https://sources.easybuild.io works."""
# cfr. https://github.com/easybuilders/easybuild-easyconfigs/issues/11951

init_config(args=["--sourcepath=%s" % self.test_prefix])
Expand Down