Make cros_download_latest_image echo its newline to stderr

Change-Id: I1a28902308f3892aa936bb0376e4eb75259cbb8b
BUG=none
TEST=./image_to_usb.sh --to=/dev/sdb --test_image --from=$(./cros_download_latest_image)

Review URL: http://codereview.chromium.org/3110040
This commit is contained in:
J. Richard Barnette 2010-08-25 16:09:25 -07:00
parent a87699b198
commit 7aeb5592be

View File

@ -41,7 +41,7 @@ fi
read -p "Username [${LOGNAME}]: " GSDCURL_USERNAME
export GSDCURL_USERNAME
read -s -p "Password: " GSDCURL_PASSWORD
echo # ... because read -s didn't print a newline
echo >&2 # ... because read -s didn't print a newline
export GSDCURL_PASSWORD
LATEST_BUILD=$(bin/cros_gsdcurl.py -s $URL_PREFIX/LATEST)