From fe9e43ae8060bc10c58bad8f0f597832992f39a5 Mon Sep 17 00:00:00 2001 From: Gabriele M Date: Mon, 1 May 2017 18:22:04 +0200 Subject: [PATCH] extract_utils: Fix cleanup variables assigment The current assignment is wrong, we cleanup the files when we tell not to do so. Change-Id: I73a9a17f5ebae6f2dbdc3d6d9aaa28cd75fb4f87 --- extract_utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extract_utils.sh b/extract_utils.sh index 11819f3..d241cf5 100644 --- a/extract_utils.sh +++ b/extract_utils.sh @@ -92,7 +92,7 @@ function setup_vendor() { COMMON=0 fi - if [ "$5" == "true" ] || [ "$5" == "1" ]; then + if [ "$5" == "false" ] || [ "$5" == "0" ]; then VENDOR_STATE=1 VENDOR_RADIO_STATE=1 else