mirror of
https://github.com/Catfriend1/syncthing-android.git
synced 2025-11-05 13:29:46 +08:00
16 lines
340 B
Batchfile
16 lines
340 B
Batchfile
@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
|