/contrib/hgtk.cmd
https://bitbucket.org/tortoisehg/hgtk/ · Batch · 18 lines · 8 code · 3 blank · 7 comment · 1 complexity · 6d62a6039912eaba0d9035e06253017f MD5 · raw file
- ::
- :: Win32 batch file for running the TortoiseHg hgtk script.
- :: Copy this file into the install directory and rename hgtk.exe
- :: to e.g. hgtk-hidden.exe
- ::
-
- @echo off
- setlocal
-
- :: Uncomment the line below and modify accoringly
- ::set hgtkpath="C:\path\to\hgtk"
- if not defined hgtkpath goto :notfound
- python %hgtkpath% %*
- goto end
-
- :notfound
- echo hgtk: Please configure hgtkpath in %~f0
- :end