Change sha1s to change ids in commit msg from migration tool

Recently the migrate_from_tempest.sh script was updated to switch from
grabbing a list of all the sha1s for that file and dumping that into
the commit message to a much cleaner list of Change-Ids for the
most recent commits that touched a file. There was one little
oversight that slipped through that change where we were still
referring to sha1s at the bottom of the commit msg. This commit fixes
that message to now say Change-Ids.

Change-Id: Idd4c7bf469a44ff1758bb2c7d8c61459fc133a2b
This commit is contained in:
Matthew Treinish
2015-09-24 11:10:34 -04:00
parent 70c6ebafcb
commit 9c7eddffd8

View File

@@ -101,5 +101,5 @@ rm -rf $tmpdir
# Generate a migration commit
commit_message="Migrated $file_list from tempest"
pre_list=$"This migrates the above files from tempest. This includes tempest commits:"
post_list=$"to see the commit history for these files refer to the above sha1s in the tempest repository"
post_list=$"to see the commit history for these files refer to the above Change-Ids in the tempest repository"
git commit -m "$commit_message" -m "$pre_list" -m "$CHANGE_LIST" -m "$post_list"