initial version

This commit is contained in:
Юрий 2025-04-18 12:21:18 +04:00
commit b80fd14932
15 changed files with 432 additions and 0 deletions

21
scripts/check_project.bat Normal file
View file

@ -0,0 +1,21 @@
@echo off
SET GIT_BASH_PATH=C:\Program Files\Git\bin\
REM enforce this codepage so cmd errors would be readable in keil
chcp 20127 >NUL 2>NUL
REM I have to use .bat-file cause Keil can't directly call shell-script
REM if you have several bashes, please set env. variable GIT_BASH_PATH with a \ at the end
REM or, if you have one bash, you can add it in the PATH
"%GIT_BASH_PATH%bash.exe" --login "%~dp0\check_project.sh" || goto :error
goto :EOF
:error
echo --------------------
echo "Error has occured when running check_project.bat!"
echo "Please check environment variable GIT_BASH_PATH; it should contain path to bash with \ on the end"
echo --------------------
exit /B 1