Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

hgtk.cmd: fix quoting, use path to hgtk script

Changeset 440de0f99df3

Parent ba80f5bb8085

by Steve Borho

Changes to one file · Browse files at 440de0f99df3 Showing diff from parent ba80f5bb8085 Diff from another changeset...

Change 1 of 1 Show Entire File contrib/​hgtk.cmd Stacked
 
6
7
8
9
10
11
12
13
 
 
 
14
15
16
17
18
 
19
 
6
7
8
 
 
 
 
 
9
10
11
12
13
14
 
 
15
16
@@ -6,14 +6,11 @@
 setlocal    :: Uncomment the line below and modify accoringly -:: set TortoisePath = C:\repos\thg-stable -if "%TortoisePath%"=="" (goto :notfound) - -:hgproc -python "%TortoisePath%\hgtk" %* +::set hgtkpath="C:\repos\tortoisehg-crew\hgtk" +if not exist %hgtkpath% goto :notfound +python %hgtkpath% %*  goto end    :notfound -echo hgtk: Please configure TortoiseHg location in %~f0 - +echo hgtk: Please configure kgtkpath in %~f0  :end