diff options
author | Tim Rozet <trozet@redhat.com> | 2018-02-14 13:12:39 -0500 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2018-02-15 12:00:05 -0500 |
commit | 2111e5a85f8d0a894e1a7684c2e1a6d897091c9d (patch) | |
tree | 02b929082ab790d524696a08cd1102814a9e92f8 /apex/build.py | |
parent | 1f6ee5a99cb191afde06695e449c53732453b222 (diff) |
Fixes python2 docutils req and also installs ansible
For some reason we were requiring python2-docutils in to build our rpm
instead of python34-docutils. Patch also includes some logic to install
ansible.
JIRA: APEX-515
Change-Id: I1b85e5b4b29f74f5ff5399296f24831c334c289c
Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'apex/build.py')
-rw-r--r-- | apex/build.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apex/build.py b/apex/build.py index 08f91abe..dff25ac8 100644 --- a/apex/build.py +++ b/apex/build.py @@ -225,6 +225,7 @@ def main(): console.setLevel(log_level) console.setFormatter(logging.Formatter(formatter)) logging.getLogger('').addHandler(console) + utils.install_ansible() # Since we only support building inside of git repo this should be fine try: apex_root = subprocess.check_output( |