diff options
author | Michael Kinney <michael.d.kinney@intel.com> | 2016-11-29 11:19:20 -0800 |
---|---|---|
committer | Michael Kinney <michael.d.kinney@intel.com> | 2016-11-30 10:21:23 -0800 |
commit | e2c3248699ee8455a74af6382ab99fb905e0890c (patch) | |
tree | 81e7ab5cb8e5bfcc6ee7f11265be2f3650ef9f1a /Vlv2TbltDevicePkg/bld_vlv.bat | |
parent | eee350c067e008a8ea0a3c6548448d410b14a1b9 (diff) | |
download | edk2-platforms-e2c3248699ee8455a74af6382ab99fb905e0890c.tar.xz |
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>
Diffstat (limited to 'Vlv2TbltDevicePkg/bld_vlv.bat')
-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 6c53917c0b..e21a6cf038 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.
|