From 86e37bec0c655d8a2504e0ee4b4a5a6af39bf928 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Mon, 29 Jul 2019 15:18:12 +0200
Subject: [PATCH] [build] Fixes call to base_build() after recent changes

---
 bob/devtools/build.py      | 5 ++---
 bob/devtools/scripts/ci.py | 8 ++++----
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/bob/devtools/build.py b/bob/devtools/build.py
index a278fcde..3802741a 100644
--- a/bob/devtools/build.py
+++ b/bob/devtools/build.py
@@ -642,9 +642,8 @@ if __name__ == '__main__':
     if not os.path.exists(os.path.join(recipe, 'meta.yaml')):
       # ignore - not a conda package
       continue
-    base_build(bootstrap, server, not args.internet, True,
-        args.group, recipe, conda_build_config, args.python_version,
-        condarc_options)
+    base_build(bootstrap, server, not args.internet, args.group, recipe,
+        conda_build_config, args.python_version, condarc_options)
 
   # notice this condarc typically will only contain the defaults channel - we
   # need to boost this up with more channels to get it right for this package's
diff --git a/bob/devtools/scripts/ci.py b/bob/devtools/scripts/ci.py
index 8e24930f..a4888e33 100644
--- a/bob/devtools/scripts/ci.py
+++ b/bob/devtools/scripts/ci.py
@@ -648,13 +648,13 @@ def docs(ctx, requirement, dry_run):
 
   This command:
     \b
-    
+
     1. Clones all the necessary packages necessary to build the bob/beat
        documentation
-    \b       
-       
+    \b
+
     2. Generates the `extra-intersphinx.txt` and `nitpick-exceptions.txt` file
-    \b    
+    \b
 
   This command is supposed to be run **instead** of `bdt ci build...`
 
-- 
GitLab