From 35aa57a3052bb1c757a8610bd3e4ceae87517462 Mon Sep 17 00:00:00 2001 From: Daniel Erat Date: Fri, 9 Apr 2010 18:51:08 -0700 Subject: [PATCH] build: Suppress stupid question in image_to_usb.sh. No point in asking the user if they're sure they want to modify the image for testing when they asked us to modify it for testing in the first place. BUG=none TEST=tried it Review URL: http://codereview.chromium.org/1520031 --- image_to_usb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image_to_usb.sh b/image_to_usb.sh index ad033ccbc4..b89725acfe 100755 --- a/image_to_usb.sh +++ b/image_to_usb.sh @@ -96,7 +96,7 @@ if [ ${FLAGS_test_image} -eq ${FLAGS_TRUE} ] ; then cp -f "${SRC_IMAGE}" "${FLAGS_from}/chromiumos_test_image.bin" # Modify it. "${SCRIPTS_DIR}/mod_image_for_test.sh" --image \ - "${FLAGS_from}/chromiumos_test_image.bin" + "${FLAGS_from}/chromiumos_test_image.bin" --yes fi # Use it. SRC_IMAGE="${FLAGS_from}/chromiumos_test_image.bin"