From e13e480b7f7bec28f3ac00f61da57fbe87b3a166 Mon Sep 17 00:00:00 2001 From: Gaurav Shah Date: Wed, 5 Jan 2011 14:47:45 -0800 Subject: [PATCH] Fix missing file list variable defintions. http://codereview.chromium.org/5878005 modified common.sh but the final checked in CL clobbered some of the variable defintions (most likely due to a manual merge) making the scripts that use it to fail. This CL puts them back. BUG=chrome-os-partner:1903 TEST=manual; sign_official_build gets hung before, works fine now. Change-Id: I8d19a086d66b0a0d1e9f7231a14fcf37d42a2f01 Review URL: http://codereview.chromium.org/6104002 --- scripts/image_signing/common.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/image_signing/common.sh b/scripts/image_signing/common.sh index 1566b9d317..98229b01b0 100755 --- a/scripts/image_signing/common.sh +++ b/scripts/image_signing/common.sh @@ -15,6 +15,10 @@ GPT=cgpt # The tag when the rootfs is changed. TAG_NEEDS_TO_BE_SIGNED="/root/.need_to_be_signed" +# List of Temporary files and mount points. +TEMP_FILE_LIST=$(mktemp) +TEMP_DIR_LIST=$(mktemp) + # Array of actions that are executed during the clean up process. declare -a cleanup_actions