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

[build] Fix typo in function

parent e7ac23c9
No related branches found
No related tags found
1 merge request!11Independent builds and python support
Pipeline #26794 failed
...@@ -473,14 +473,14 @@ def base_build(server, intranet, recipe_dir, config): ...@@ -473,14 +473,14 @@ def base_build(server, intranet, recipe_dir, config):
if recipe is None: if recipe is None:
logger.warn('Skipping build for %s - rendering returned None', recipe_dir) logger.warn('Skipping build for %s - rendering returned None', recipe_dir)
continue return
if exists_on_channel(public_channel, recipe['package']['name'], if exists_on_channel(public_channel, recipe['package']['name'],
recipe['package']['version'], recipe['build']['number']): recipe['package']['version'], recipe['build']['number']):
logger.warn('Skipping build for %s-%s_%s - exists on channel already', logger.warn('Skipping build for %s-%s_%s - exists on channel already',
recipe['package']['name'], recipe['package']['version'], recipe['package']['name'], recipe['package']['version'],
recipe['build']['number']) recipe['build']['number'])
continue return
# if you get to this point, just builds the package # if you get to this point, just builds the package
arch = conda_arch() arch = conda_arch()
......
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