From 19bfead3403e3c81a8b51032cd97b17351723958 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Thu, 14 Feb 2019 14:02:08 +0100
Subject: [PATCH] [scripts][ci] Fix minor typo in base_biuld()

---
 bob/devtools/scripts/ci.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bob/devtools/scripts/ci.py b/bob/devtools/scripts/ci.py
index 0d70596e..1bf30abb 100644
--- a/bob/devtools/scripts/ci.py
+++ b/bob/devtools/scripts/ci.py
@@ -366,7 +366,7 @@ def base_build(order, python, dry_run):
     click.echo('\n' + (80*'='))
     pytext = 'for python-%s' % pyver if pyver is not None else ''
     click.echo('Building "%s" %s(%d/%d)' % \
-        (recipe, pytext, order+1, total_recipes))
+        (recipe, pytext, order+1, len(recipes)))
     click.echo((80*'=') + '\n')
     if not os.path.exists(os.path.join(recipe, 'meta.yaml')):
       logger.info('Ignoring directory "%s" - no meta.yaml found' % recipe)
-- 
GitLab