Create chmod+x.cmd

This commit is contained in:
Catfriend1 2025-07-17 16:32:32 +02:00
parent ce38538d61
commit 39628bd505

View File

@ -0,0 +1,15 @@
@echo off
setlocal enabledelayedexpansion
::
SET "SCRIPT_PATH=%~dp0"
SET "PROJECT_ROOT=%SCRIPT_PATH%..\..\.."
::
::
git update-index --chmod=+x "%PROJECT_ROOT%\docker\prebuild.sh"
git update-index --chmod=+x "%PROJECT_ROOT%\git_fetch_branch.sh"
git update-index --chmod=+x "%PROJECT_ROOT%\gradlew"
::
git commit -m "chmod +x"
::
goto :eof