Improve overrides diff script

Change-Id: I4af33e57ee31c0d4f52afb3e2ff248039333f702
Signed-off-by: Andrii Ostapenko <andrii.ostapenko@att.com>
This commit is contained in:
Andrii Ostapenko 2020-07-22 15:57:15 -05:00 committed by Andrii Ostapenko
parent 68940203db
commit 68097edf36

View File

@ -21,8 +21,11 @@
- name: Diff
shell: |
set -ex;
for dir in openstack-helm openstack-helm-infra; do
path="{{ work_dir }}/../${dir}/"
if [ ! -d "${dir}" ]; then continue; fi
echo "${dir} diff"
cd {{ work_dir }}/../${dir}/; git diff;
cd "${path}"; git diff; cd -;
done
...