From ea7b44abd725139535475a96dbcbc5b9c39539a2 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Tue, 24 May 2022 21:59:28 -0700 Subject: Rename build.cmd to devbuild.cmd to better represent its purpose The build.cmd in the root of the repository is intended for use by developers looking to build the full WiX Toolset. Official builds use the appropriate build files in the src folder. Renaming build.cmd to devbuild.cmd better represents its purpose. As a bonus, renaming to devbuild.cmd also removes TAB completion conflict with the .\build folder. --- build.cmd | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 build.cmd (limited to 'build.cmd') diff --git a/build.cmd b/build.cmd deleted file mode 100644 index 2bd996cb..00000000 --- a/build.cmd +++ /dev/null @@ -1,15 +0,0 @@ -@echo off - -setlocal -pushd %~dp0 - -:parse_args -if /i "%1"=="release" set _C=Release -if /i "%1"=="clean" set _CLEAN=1 -if not "%1"=="" shift & goto parse_args - -if not "%_CLEAN%"=="" src\clean.cmd -src\build_all.cmd %_C% - -popd -endlocal -- cgit v1.2.3-55-g6feb