mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 06:11:19 +00:00
dbbedd7713
* Update helper script * Add helper script: postbuild_rename_apk.cmd * Improve helper script postbuild_rename_apk.cmd * Add purpose and example to helper script
12 lines
234 B
Batchfile
12 lines
234 B
Batchfile
@echo off
|
|
cls
|
|
REM
|
|
SET PATH=%PATH%;"%ProgramFiles%\Git\bin"
|
|
SET DESIRED_SUBMODULE_VERSION=v1.0.0
|
|
REM
|
|
cd /d "%~dps0\syncthing\src\github.com\syncthing\syncthing"
|
|
REM
|
|
git fetch --all
|
|
git checkout %DESIRED_SUBMODULE_VERSION%
|
|
REM
|
|
pause
|