Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

contrib: fix hgtk.cmd

Changeset 1330adfc9e8c

Parent 5d0f34b401f8

by Adrian Buehlmann

Changes to one file · Browse files at 1330adfc9e8c Showing diff from parent 5d0f34b401f8 Diff from another changeset...

Change 1 of 1 Show Entire File contrib/​hgtk.cmd Stacked
 
1
2
 
 
3
4
5
6
7
8
9
10
 
 
11
12
13
14
15
 
16
 
1
2
3
4
5
6
7
8
9
10
 
 
11
12
13
14
15
16
 
17
18
@@ -1,16 +1,18 @@
 ::  :: 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:\repos\tortoisehg-crew\hgtk" -if not exist %hgtkpath% goto :notfound +::set hgtkpath="C:\path\to\hgtk" +if not defined hgtkpath goto :notfound  python %hgtkpath% %*  goto end    :notfound -echo hgtk: Please configure kgtkpath in %~f0 +echo hgtk: Please configure hgtkpath in %~f0  :end