summaryrefslogtreecommitdiffstats
path: root/BaseTools/toolsetup.bat
diff options
context:
space:
mode:
authorRebecca Cran <rebecca@bsdio.com>2021-06-13 11:56:02 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-06-25 03:12:26 +0000
commitf0a3f6d9c30bf0926959a23c1454053a9df5ae9d (patch)
tree08cd2d4da7e920914a545ad030993fb7d02d098d /BaseTools/toolsetup.bat
parent333a8661066bd9d3a01518bdc5443db233977bcc (diff)
downloadedk2-f0a3f6d9c30bf0926959a23c1454053a9df5ae9d.tar.gz
edk2-f0a3f6d9c30bf0926959a23c1454053a9df5ae9d.tar.bz2
edk2-f0a3f6d9c30bf0926959a23c1454053a9df5ae9d.zip
BaseTools: Fix spelling of "overwrite" and "overwriting" in toolset.bat
The words "overwrite" and "overwriting" are one word and shouldn't have hyphens. Signed-off-by: Rebecca Cran <rebecca@bsdio.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'BaseTools/toolsetup.bat')
-rwxr-xr-xBaseTools/toolsetup.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/BaseTools/toolsetup.bat b/BaseTools/toolsetup.bat
index a766a69f08..4fcff31879 100755
--- a/BaseTools/toolsetup.bat
+++ b/BaseTools/toolsetup.bat
@@ -227,7 +227,7 @@ if NOT exist %CONF_PATH% (
) else (
if defined RECONFIG (
echo.
- echo Over-writing the files in the CONF_PATH directory
+ echo Overwriting the files in the CONF_PATH directory
echo using the default template files
echo.
)
@@ -240,7 +240,7 @@ if NOT exist %CONF_PATH%\target.txt (
)
copy %EDK_TOOLS_PATH%\Conf\target.template %CONF_PATH%\target.txt > nul
) else (
- if defined RECONFIG echo over-write ... target.template to %CONF_PATH%\target.txt
+ if defined RECONFIG echo overwrite ... target.template to %CONF_PATH%\target.txt
if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\target.template %CONF_PATH%\target.txt > nul
)
@@ -251,7 +251,7 @@ if NOT exist %CONF_PATH%\tools_def.txt (
)
copy %EDK_TOOLS_PATH%\Conf\tools_def.template %CONF_PATH%\tools_def.txt > nul
) else (
- if defined RECONFIG echo over-write ... tools_def.template to %CONF_PATH%\tools_def.txt
+ if defined RECONFIG echo overwrite ... tools_def.template to %CONF_PATH%\tools_def.txt
if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\tools_def.template %CONF_PATH%\tools_def.txt > nul
)