extract_utils: drop the "/system/" prefix from prints of blob names

* This makes the printed output closer to the proprietary-files.txt syntax

Change-Id: I81b844bb6bb1d1a2f91a39151a892fbfc0bed20b
Signed-off-by: Vladimir Oltean <olteanv@gmail.com>
This commit is contained in:
Vladimir Oltean
2018-12-24 01:03:47 +02:00
committed by Michael Bestas
parent 506c0b7342
commit 4fe79b11c1

View File

@@ -1013,11 +1013,7 @@ function extract() {
DST_FILE="/system/${SPEC_DST_FILE}"
fi
if [ "$SRC" = "adb" ]; then
printf ' - %s .. \n' "${DST_FILE}"
else
printf ' - %s \n' "${DST_FILE}"
fi
printf ' - %s \n' "${DST_FILE#/system/}"
# Strip the file path in the vendor repo of "system", if present
local VENDOR_REPO_FILE="$OUTPUT_DIR/${DST_FILE#/system}"