Merge "Release cycle test template file cleanup"

This commit is contained in:
Zuul 2020-04-09 17:24:47 +00:00 committed by Gerrit Code Review
commit 0031fc28e5
1 changed files with 7 additions and 1 deletions

View File

@ -61,7 +61,13 @@ done
changes=$(git diff-index --name-only HEAD --)
if [ -n "$changes" ]; then
git checkout -b add-${SERIES}-python-jobtemplates
git add .
# Add only the files we modified
for file in $changes; do
git add $file
done
git clean -f
git diff --cached
git commit -m "$commit_msg"
git show