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

contrib: introduce hgtk.cmd

Changeset 1e0595a2956b

Parent e1e08aa356b6

by Steve Borho

Changes to one file · Browse files at 1e0595a2956b Showing diff from parent e1e08aa356b6 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
17
18
19
@@ -0,0 +1,19 @@
+:: +:: Win32 batch file for running the TortoiseHg hgtk script. +:: + +@echo off +setlocal + +:: Uncomment the line below and modify accoringly +:: set TortoisePath = C:\repos\thg-stable +if "%TortoisePath%"=="" (goto :notfound) + +:hgproc +python "%TortoisePath%\hgtk" %* +goto end + +:notfound +echo hgtk: Please configure TortoiseHg location in %~f0 + +:end