sync.bat 299 B

1234567891011121314
  1. :: this script should run the sync bash script on windows, onecs cygwin has been installed
  2. set curdir=%~dp0
  3. for /f %%i in ('git -C %curdir% rev-parse --show-toplevel') do set projectdir=%%i
  4. echo message directory is
  5. echo %projectdir%
  6. echo %curdir%
  7. C:\cygwin64\bin\bash -l %curdir%sync.sh
  8. PAUSE