Fix fuelmain_sha missing from version.yaml

Typo in repos.mk prevented fuelmain_sha from being filled
with correct data.

Closes-Bug: #1413246
Change-Id: Ifb9adb85980ec450e51872340b1003bf8c541d9e
This commit is contained in:
Igor Belikov 2015-02-04 16:21:40 +03:00
parent 0d6abfd4cd
commit 1d2e42fcb4
1 changed files with 1 additions and 1 deletions

View File

@ -39,6 +39,6 @@ $(BUILD_DIR)/repos/repos.done:
echo " $${repo}_sha: \"$${repo_commit_id}\""; \
done > $${version_yaml}.tmp; \
fuelmain_commit_id=`git rev-parse --verify HEAD`; \
echo " fuelmain_sha: \"${fuelmain_commit_id}\"" >> $${version_yaml}.tmp; \
echo " fuelmain_sha: \"$${fuelmain_commit_id}\"" >> $${version_yaml}.tmp; \
mv $${version_yaml}.tmp $${version_yaml}
$(ACTION.TOUCH)