recovery: fix applying updates

We need to break after applying from either ADB or Storage to return
the status of the installation.

Otherwise the log is stuck until you press on the back arrow, you
are able to start sideload multiple times and other shenanigans.

Change-Id: I06c9dcf6161dd1a0199417cfed2465914837d795
Signed-off-by: Alexander Martinz <amartinz@shiftphones.com>
diff --git a/recovery.cpp b/recovery.cpp
index a2c5682..756d76e 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -246,6 +246,7 @@
     } else {
       status = ApplyFromStorage(device, volumes[chosen - 1]);
     }
+    break;
   }
   return status;
 }