Release cycle test template file cleanup

Change-Id: I3a56b537a8b96567fbef002c5b4ab3f42dcb96ba
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2020-04-09 10:59:50 -05:00
parent ebee7e0d7c
commit b7933a7e70
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
1 changed files with 7 additions and 1 deletions

View File

@ -57,7 +57,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