From 4977c869d558b51c61e9f7bb35a3a2936d02e652 Mon Sep 17 00:00:00 2001 From: robotboy Date: Tue, 23 Mar 2010 14:25:46 -0700 Subject: [PATCH] Fix autotest_lib overuse of double quotes. TEST=run build_autotest.sh --baord voguev210 Review URL: http://codereview.chromium.org/1215001 --- autotest_lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotest_lib.sh b/autotest_lib.sh index c4ad9d6795..9b95d2433a 100644 --- a/autotest_lib.sh +++ b/autotest_lib.sh @@ -17,7 +17,7 @@ function check_board() { local found=0 for overlay_path in "${SRC_ROOT}"/overlays/overlay-* do - local overlay="$(basename \"${overlay_path}\")" + local overlay=$(basename "${overlay_path}") local board="${overlay#overlay-}" board_names[index]="${board}" index+=1