Fix overrides diff

Check proper path.

Change-Id: Icd3d0711fb530b77d049227b09904c433e26dc78
Signed-off-by: Andrii Ostapenko <andrii.ostapenko@att.com>
This commit is contained in:
Andrii Ostapenko 2020-07-31 21:52:59 -05:00
parent f79704a8f0
commit cf90f32e8b
No known key found for this signature in database
GPG Key ID: F3E83668DBB223B3

View File

@ -24,7 +24,7 @@
set -ex;
for dir in openstack-helm openstack-helm-infra; do
path="{{ work_dir }}/../${dir}/"
if [ ! -d "${dir}" ]; then continue; fi
if [ ! -d "${path}" ]; then continue; fi
echo "${dir} diff"
cd "${path}"; git diff; cd -;
done