Преглед на файлове

extract-files: Error if path isn't specified

* ADB shouldn't be an option
* It's super annoying when you forget to use -p

Change-Id: Ie2c8819b10377109b7c49e52f1cb25f4289be372
Signed-off-by: Paul Keith <[email protected]>
Paul Keith преди 7 години
родител
ревизия
b44476b518
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      extract-files.sh

+ 2 - 2
extract-files.sh

@@ -46,8 +46,8 @@ while [ "$1" != "" ]; do
 done
 
 if [ -z "$SRC" ]; then
-    echo "Warning, path to system dump not specified, pulling from adb"
-    SRC=adb
+    echo "Path to system dump not specified! Specify one with --path"
+    exit 1
 fi
 
 if [ -z "$TARGET" ]; then