Stop creating an empty system_logs dir in CI

The system logs from the building node are copied to the system_log
directory. There is no need to create an empty system_logs directory.
It was certainly a typo.

Change-Id: I1f0eea485550bd7b41c9954a6b7077251518b31d
This commit is contained in:
Martin André 2018-07-09 21:23:58 +02:00
parent a6e5b6e7fc
commit c4eb866ad5

View File

@ -24,7 +24,7 @@
cmd: |
mkdir logs
ln -s $(pwd)/logs /tmp/logs
mkdir -p /tmp/logs/{ansible,build,kolla,kolla_configs,system_logs}
mkdir -p /tmp/logs/{ansible,build,kolla,kolla_configs}
executable: /bin/bash
chdir: "{{ zuul.project.src_dir }}"