image_signing: avoid leaking rootfs mount in android code

When we return early from the release check, we leaked the mount point.
This could in turn cause issues with data syncing and hash calculation.

BUG=b:30891460
TEST=None
BRANCH=None

Change-Id: I7a40007e371b8e64ca7e8210ad9121dc1a4bcf9f
Reviewed-on: https://chromium-review.googlesource.com/370739
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Tested-by: Mike Frysinger <vapier@chromium.org>
diff --git a/scripts/image_signing/sign_official_build.sh b/scripts/image_signing/sign_official_build.sh
index badfaa9..173dd6b 100755
--- a/scripts/image_signing/sign_official_build.sh
+++ b/scripts/image_signing/sign_official_build.sh
@@ -610,6 +610,7 @@
     "${rootfs_dir}/etc/lsb-release" | cut -d= -f2)
   if [[ "${milestone}" -le 53 ]]; then
     info "Not signing Android apks before 53 (incl.).  Current: ${milestone}."
+    sudo umount "${rootfs_dir}"
     return
   fi