Fix setup_commit_message for proposal bot

Fix change I80c7f81b0b7f225fbf1e1564239f40b5df8537d9,
I forgot to change a variable name which resulted in
an invalid change ID.

We need to use the variable CHANGE_ID that in the commit message which
is set a few lines above.

Change-Id: I9aeff5c432397f3cb06808066a76afb12f460fd7
This commit is contained in:
Andreas Jaeger
2016-01-09 09:13:16 +01:00
parent de989aa223
commit 4313fe62f8

View File

@@ -50,7 +50,7 @@ function setup_commit_message {
read -d '' COMMIT_MSG <<EOF
$INITIAL_COMMIT_MSG
Change-Id: $change_id
Change-Id: $CHANGE_ID
EOF
set -e
else