| Index: src/scripts/image_to_usb.sh
 | 
| diff --git a/src/scripts/image_to_usb.sh b/src/scripts/image_to_usb.sh
 | 
| index 3744ac08260510bfe5249079c8b73c36f17c7649..6b92a5ba2b19552c9b4e5be6117840db1b64ffca 100755
 | 
| --- a/src/scripts/image_to_usb.sh
 | 
| +++ b/src/scripts/image_to_usb.sh
 | 
| @@ -115,15 +115,12 @@ if [ ${FLAGS_test_image} -eq ${FLAGS_TRUE} ] ; then
 | 
|      if [ ${FLAGS_factory} -eq ${FLAGS_TRUE} ] ; then
 | 
|        FACTORY_ARGS="--factory"
 | 
|      fi
 | 
| -    # Check for yes
 | 
| -    if [ ${FLAGS_yes} -eq ${FLAGS_TRUE} ] ; then
 | 
| -      YES="--yes"
 | 
| -    fi
 | 
| -
 | 
|  
 | 
| -    # Modify it.
 | 
| +    # Modify it.  Pass --yes so that mod_image_for_test.sh won't ask us if we
 | 
| +    # really want to modify the image; the user gave their assent already with
 | 
| +    # --test-image and the original image is going to be preserved.
 | 
|      "${SCRIPTS_DIR}/mod_image_for_test.sh" --image \
 | 
| -      "${FLAGS_from}/chromiumos_test_image.bin" ${FACTORY_ARGS} ${YES}
 | 
| +      "${FLAGS_from}/chromiumos_test_image.bin" ${FACTORY_ARGS} --yes
 | 
|      echo "Done with mod_image_for_test."
 | 
|    else
 | 
|      echo "Using cached test image."
 | 
| 
 |