Fix build when no CHANGELOG.md exists.

This was actually not breaking the build, just outputing an error

--
MOS_MIGRATED_REVID=117481375
diff --git a/scripts/bootstrap/buildenv.sh b/scripts/bootstrap/buildenv.sh
index 3b7956c..9382513 100755
--- a/scripts/bootstrap/buildenv.sh
+++ b/scripts/bootstrap/buildenv.sh
@@ -191,8 +191,13 @@
 # Get the latest release version and append the date of
 # the last commit if any.
 function get_last_version() {
-  local version="$(fgrep -m 1 '## Release' CHANGELOG.md \
-                     | sed -E 's|.*Release (.*) \(.*\)|\1|')"
+  if [ -f "CHANGELOG.md" ]; then
+    local version="$(fgrep -m 1 '## Release' CHANGELOG.md \
+                       | sed -E 's|.*Release (.*) \(.*\)|\1|')"
+  else
+    local version=""
+  fi
+
   local date="$(git_date)"
   if [ -z "${version-}" ]; then
     version="unknown"