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

[build] Fix join statement

parent 59d07f50
No related branches found
No related tags found
1 merge request!128Adds a docker-login command to the bootstrap of builds requiring it
Pipeline #35340 passed
......@@ -256,7 +256,7 @@ def exists_on_channel(channel_url, basename):
candidate = urls[other_build_numbers.index(self_build_number)]
pkg_type = '.conda' if basename.endswith('.conda') else '.tar.bz2'
if candidate.endswith(pkg_type): #match
return "".join(channel_url, candidate)
return "".join((channel_url, candidate))
def remove_pins(deps):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment