From 32cc3fbc619763128ecb99eb099439b1376cd432 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Thu, 14 Feb 2019 10:41:18 +0100
Subject: [PATCH] [scripts][ci] Improve help message for base-build

---
 bob/devtools/scripts/ci.py | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/bob/devtools/scripts/ci.py b/bob/devtools/scripts/ci.py
index af9aff04..0d70596e 100644
--- a/bob/devtools/scripts/ci.py
+++ b/bob/devtools/scripts/ci.py
@@ -303,10 +303,17 @@ def pypi(package, dry_run):
 @ci.command(epilog='''
 Examples:
 
-  1. Builds a list of packages (base dependencies) defined in a text file
+  1. Builds a list of non-python packages (base dependencies) defined in a text
+     file:
 
      $ bdt ci base-build -vv order.txt
 
+
+  2. Builds a list of python-dependent packages (base dependencies) defined in
+     a text file, for python 3.6 and 3.7:
+
+     $ bdt ci base-build -vv --python=3.6 --python=3.7 order.txt
+
 ''')
 @click.argument('order', required=True, type=click.Path(file_okay=True,
   dir_okay=False, exists=True), nargs=1)
-- 
GitLab