Skip to content
Snippets Groups Projects
Commit b757d433 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[ci] Fix bootstrap symbol name

parent c8e44a45
No related branches found
No related tags found
No related merge requests found
...@@ -162,7 +162,7 @@ def merge_conda_cache(cache, prefix): ...@@ -162,7 +162,7 @@ def merge_conda_cache(cache, prefix):
# move packages on cache/pkgs to pkgs_dir # move packages on cache/pkgs to pkgs_dir
cached_pkgs_dir = os.path.join(cache, 'pkgs') cached_pkgs_dir = os.path.join(cache, 'pkgs')
cached_packages = glob.glob(os.path.join(cache_pkgs_dir, '*.tar.bz2')) cached_packages = glob.glob(os.path.join(cached_pkgs_dir, '*.tar.bz2'))
cached_packages = [k for k in cached_packages if not \ cached_packages = [k for k in cached_packages if not \
k.startswith(os.environ['CI_PROJECT_NAME'] + '-')] k.startswith(os.environ['CI_PROJECT_NAME'] + '-')]
logger.info('Merging %d cached conda packages', len(cached_packages)) logger.info('Merging %d cached conda packages', len(cached_packages))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment