From 30e7f6439b2891993ec370511e65da5073e20fec Mon Sep 17 00:00:00 2001 From: Gaurav Shah Date: Thu, 20 Jan 2011 15:57:23 -0800 Subject: [PATCH] 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 --- scripts/image_signing/ensure_no_password.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/image_signing/ensure_no_password.sh b/scripts/image_signing/ensure_no_password.sh index 5bda0a7b53..a6adb858f1 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