diff options
author | Guo Mang <mang.guo@intel.com> | 2016-12-12 14:35:53 +0800 |
---|---|---|
committer | Guo Mang <mang.guo@intel.com> | 2016-12-12 14:35:53 +0800 |
commit | e5c39438b5d83cf3a91841544a554da87ac0dbc1 (patch) | |
tree | 3b8e10232392447ccd0d07f8f6f02a122eb08e19 | |
parent | a97a96261586a8fa2804eee0e090457335d06c03 (diff) | |
download | edk2-platforms-e5c39438b5d83cf3a91841544a554da87ac0dbc1.tar.xz |
Vlv2TbltDevicePkg: Fix typo in script file
To prevent output from being shown, output file should be 'nul', not 'null'
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Guo Mang <mang.guo@intel.com>
Reviewed-by: David Wei <david.wei@intel.com>
-rw-r--r-- | Vlv2TbltDevicePkg/bld_vlv.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Vlv2TbltDevicePkg/bld_vlv.bat b/Vlv2TbltDevicePkg/bld_vlv.bat index 547b2b110a..24cb2ea9b0 100644 --- a/Vlv2TbltDevicePkg/bld_vlv.bat +++ b/Vlv2TbltDevicePkg/bld_vlv.bat @@ -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.
|