-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added check in tcbuild.bat that clean script does not make the repo…
…sitory dirty (#3240) * added check in tcbuild.bat that clean script does not make the repository dirty * fixed removing WIFF auxiliary files for Unicode testing * changed timstof_prm_scheduler.prmsqlite to be written to test directory instead of repo root * updated .gitignore for SearchControlLog.txt and UserSettings.data (from WIFF2 SDK) * added error message immediately after clean script for dirty repo * added Thermo/x64 subdir to .gitignore * added CleanBumbershoot.bat * added src_subset to .gitignore (automatically cleaning it when the build is successful would be an alternative, but then if the build fails, it would be dirty for subsequent builds of different configs) * added files to .gitignore either created by TeamCity or by older versions of the code (e.g. without the fixes to delete WIFF auxiliary files for Unicode testing)
- Loading branch information
Showing
7 changed files
with
84 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@echo off | ||
setlocal | ||
@echo off | ||
|
||
REM # Get the location of this script and drop trailing slash | ||
set SCRIPT_ROOT=%~dp0 | ||
set SCRIPT_ROOT=%SCRIPT_ROOT:~0,-1% | ||
pushd %SCRIPT_ROOT% | ||
|
||
FOR /r %%I IN (*Version.cpp) DO del "%%I" | ||
IF EXIST idpicker\build-nt-x86 rmdir /s /q idpicker\build-nt-x86 | ||
IF EXIST idpicker\packages rmdir /s /q idpicker\packages | ||
|
||
IF EXIST greazy\GUI\Properties\AssemblyInfo.cs del /q greazy\GUI\Properties\AssemblyInfo.cs | ||
IF EXIST idpicker\Controls\Properties\AssemblyInfo.cs del /q idpicker\Controls\Properties\AssemblyInfo.cs | ||
IF EXIST idpicker\CustomDataSourceDialog\Properties\AssemblyInfo.cs del /q idpicker\CustomDataSourceDialog\Properties\AssemblyInfo.cs | ||
IF EXIST idpicker\Model\Properties\AssemblyInfo.cs del /q idpicker\Model\Properties\AssemblyInfo.cs | ||
IF EXIST idpicker\Qonverter\CLI\AssemblyInfo.cpp del /q idpicker\Qonverter\CLI\AssemblyInfo.cpp | ||
IF EXIST idpicker\Util\Properties\AssemblyInfo.cs del /q idpicker\Util\Properties\AssemblyInfo.cs | ||
IF EXIST idpicker\Properties\AssemblyInfo.cs del /q idpicker\Properties\AssemblyInfo.cs | ||
IF EXIST idpicker\Resources\Resources.rc del /q idpicker\Resources\Resources.rc | ||
IF EXIST idpicker\Resources\Resources.res del /q idpicker\Resources\Resources.res | ||
|
||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters