From 909a866a5023c8f23b504ce1307283df834d2b55 Mon Sep 17 00:00:00 2001 From: yanlu Date: Wed, 26 May 2021 11:49:49 +0800 Subject: [PATCH 1/6] modify the error information when missing -c and -m --- tools/sign_tool/sign_tool.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/sign_tool/sign_tool.sh b/tools/sign_tool/sign_tool.sh index 5469f80..0435a67 100755 --- a/tools/sign_tool/sign_tool.sh +++ b/tools/sign_tool/sign_tool.sh @@ -129,7 +129,7 @@ fi itrustee_start_sign(){ # check_native_sign if [ -z $A_CONFIG_FILE ]; then - echo "Error: missing config file for signing iTrustee enclave" + echo "Error: missing additional config_cloud.ini file for signing iTrustee enclave" exit -1 fi @@ -137,7 +137,7 @@ itrustee_start_sign(){ if [ -z $SIGNATURE ]; then ONE_STEP_MODE=1 if [ -z $CONFIG_FILE ]; then - echo "Error: missing config file for signing iTrustee enclave" + echo "Error: missing basic config file for signing iTrustee enclave" exit -1 fi if [ -z $IN_ENCLAVE ]; then -- 2.27.0