From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.93; helo=mga11.intel.com; envelope-from=liming.gao@intel.com; receiver=edk2-devel@lists.01.org Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 05BF6211F889D for ; Tue, 10 Jul 2018 06:28:57 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 10 Jul 2018 06:28:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,334,1526367600"; d="scan'208";a="244506038" Received: from lgao4-mobl1.ccr.corp.intel.com ([10.249.168.208]) by fmsmga006.fm.intel.com with ESMTP; 10 Jul 2018 06:28:57 -0700 From: Liming Gao To: edk2-devel@lists.01.org Cc: Jiewen Yao Date: Tue, 10 Jul 2018 21:28:48 +0800 Message-Id: <20180710132848.9320-1-liming.gao@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 Subject: [Patch edk2-platforms\devel-MinPlatform] PurleyOpenBoardPkg: Update batch file not to check the return value of timeout X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jul 2018 13:28:58 -0000 timeout command may not work well in some environment. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao Cc: Jiewen Yao --- Platform/Intel/PurleyOpenBoardPkg/BoardMtOlympus/bld.bat | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Platform/Intel/PurleyOpenBoardPkg/BoardMtOlympus/bld.bat b/Platform/Intel/PurleyOpenBoardPkg/BoardMtOlympus/bld.bat index a6e0605..4c4aec3 100644 --- a/Platform/Intel/PurleyOpenBoardPkg/BoardMtOlympus/bld.bat +++ b/Platform/Intel/PurleyOpenBoardPkg/BoardMtOlympus/bld.bat @@ -111,13 +111,13 @@ echo. echo -------------------------------------------------------------------- echo. call postbuild.bat +if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% timeout 1 echo -------------------------------------------------------------------- echo. echo PostBuild End echo. echo -------------------------------------------------------------------- -if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% echo %date% %time% echo. @@ -128,7 +128,6 @@ echo Purley Build End echo. echo -------------------------------------------------------------------------------------------- -if %ERRORLEVEL% NEQ 0 EXIT /b %ERRORLEVEL% :done endlocal & EXIT /b %SCRIPT_ERROR% -- 2.10.0.windows.1