Vlv2TbltDevicePkg: Fix typo in name of nul output file

https://bugzilla.tianocore.org/show_bug.cgi?id=272

Fix typo in script file.  To prevent output from being
shown, then output file should be 'nul', not 'null'.

Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: David Wei <david.wei@intel.com>
Cc: Mang Guo <mang.guo@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Michael Kinney <michael.d.kinney@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
This commit is contained in:
Michael Kinney 2016-11-29 11:19:20 -08:00
parent eee350c067
commit e2c3248699
1 changed files with 2 additions and 2 deletions

View File

@ -68,11 +68,11 @@ if /i "%~1"=="/l" (
if /i "%~1" == "/c" (
echo Removing previous build files ...
if exist build (
del /f/s/q build > null
del /f/s/q build > nul
rmdir /s/q build
)
if exist conf\.cache (
del /f/s/q conf\.cache > null
del /f/s/q conf\.cache > nul
rmdir /s/q conf\.cache
)
echo.