summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaurav Shah <gauravsh@chromium.org>2011-01-20 15:57:23 -0800
committerGaurav Shah <gauravsh@chromium.org>2011-01-20 15:57:23 -0800
commit30e7f6439b2891993ec370511e65da5073e20fec (patch)
treea40d30a03ccc99828b32d3ce430a84e262d6cdf2
parent605500b88cd99097d482ddcefee4ba04898781ae (diff)
downloadvboot-30e7f6439b2891993ec370511e65da5073e20fec.tar.gz
Fix typo in ensure no password script
The current version always fails - and generates false positives. (This is not the version that is on the live signer, so we are good.) Change-Id: I7cb14cdcaf4d96bc2911e596224ead9a3738aa18 BUG=chromium-os:1459 TEST=manually tested Review URL: http://codereview.chromium.org/6322006
-rwxr-xr-xscripts/image_signing/ensure_no_password.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/image_signing/ensure_no_password.sh b/scripts/image_signing/ensure_no_password.sh
index 5bda0a7b..a6adb858 100755
--- a/scripts/image_signing/ensure_no_password.sh
+++ b/scripts/image_signing/ensure_no_password.sh
@@ -19,7 +19,7 @@ IMAGE=$1
ROOTFS=$(make_temp_dir)
mount_image_partition_ro "$IMAGE" 3 "$ROOTFS"
-if ! no_chronos_password $rootfs; then
+if ! no_chronos_password $ROOTFS; then
echo "chronos password is set! Shouldn't be for release builds."
exit 1
fi