Fix syntax error in METADATA updater
The edit I made in the update-from-external script deletes the double
quotation around the version field which makes the METADATA file
unparseable.
Bug: 386801050
Test: ./update-from-external.sh 8.13.55 && cd ../.. && m
Change-Id: I514e39c0325eff16f5918f9be5bc5e72b494e76e
diff --git a/update-from-external.sh b/update-from-external.sh
index c1e8332..5a5e964 100755
--- a/update-from-external.sh
+++ b/update-from-external.sh
@@ -44,7 +44,7 @@
DAY=$(date +%d)
cp $DIR/METADATA $tmp
echo "Updating METADATA"
-sed -e "s/\(version: \)\(.*\)/\1$VERSION/
+sed -e "s/\(version: \)\(.*\)/\1\"$VERSION\"/
s/\(year: \)\(.*\)/\1$YEAR/
s/\(month: \)\(.*\)/\1$MONTH/
s/\(day: \)\(.*\)/\1$DAY/" < $tmp/METADATA > $DIR/METADATA