Fix autotest_lib overuse of double quotes.

TEST=run build_autotest.sh --baord voguev210

Review URL: http://codereview.chromium.org/1215001
This commit is contained in:
robotboy 2010-03-23 14:25:46 -07:00
parent 69f3cbe0a2
commit 4977c869d5

View File

@ -17,7 +17,7 @@ function check_board() {
local found=0 local found=0
for overlay_path in "${SRC_ROOT}"/overlays/overlay-* for overlay_path in "${SRC_ROOT}"/overlays/overlay-*
do do
local overlay="$(basename \"${overlay_path}\")" local overlay=$(basename "${overlay_path}")
local board="${overlay#overlay-}" local board="${overlay#overlay-}"
board_names[index]="${board}" board_names[index]="${board}"
index+=1 index+=1