summaryrefslogtreecommitdiff
path: root/extract-files.sh
diff options
context:
space:
mode:
Diffstat (limited to 'extract-files.sh')
-rwxr-xr-xextract-files.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/extract-files.sh b/extract-files.sh
index df252d3..d5c7409 100755
--- a/extract-files.sh
+++ b/extract-files.sh
@@ -34,7 +34,7 @@ fi
. "$HELPER"
# default to not sanitizing the vendor folder before extraction
-clean_vendor=false
+CLEAN_VENDOR=false
while [ "$1" != "" ]; do
case $1 in
@@ -43,9 +43,9 @@ while [ "$1" != "" ]; do
;;
-s | --section ) shift
SECTION=$1
- clean_vendor=false
+ CLEAN_VENDOR=false
;;
- -c | --clean-vendor ) clean_vendor=true
+ -c | --clean-vendor ) CLEAN_VENDOR=true
;;
esac
shift
@@ -56,7 +56,7 @@ if [ -z "$SRC" ]; then
fi
# Initialize the common helper
-setup_vendor "$DEVICE_COMMON" "$VENDOR" "$LINEAGE_ROOT" true $clean_vendor
+setup_vendor "$DEVICE_COMMON" "$VENDOR" "$LINEAGE_ROOT" true $CLEAN_VENDOR
extract "$MY_DIR"/proprietary-files.txt "$SRC" "$SECTION"