##// END OF EJS Templates
wix: avoid an abort with 'hg help -k foo'...
Matt Harbison -
r26119:65d2538a stable
parent child Browse files
Show More
@@ -1,34 +1,35 b''
1 1 <?xml version="1.0" encoding="utf-8"?>
2 2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3 3
4 4 <?include guids.wxi ?>
5 5 <?include defines.wxi ?>
6 6
7 7 <Fragment>
8 8 <DirectoryRef Id="INSTALLDIR">
9 9 <Directory Id="helpdir" Name="help" FileSource="$(var.SourceDir)">
10 10 <Component Id="helpFolder" Guid="$(var.helpFolder.guid)" Win64='$(var.IsX64)'>
11 11 <File Name="config.txt" KeyPath="yes" />
12 12 <File Name="dates.txt" />
13 13 <File Name="diffs.txt" />
14 14 <File Name="environment.txt" />
15 15 <File Name="extensions.txt" />
16 16 <File Name="filesets.txt" />
17 17 <File Name="glossary.txt" />
18 18 <File Name="hgignore.txt" />
19 19 <File Name="hgweb.txt" />
20 20 <File Name="merge-tools.txt" />
21 21 <File Name="multirevs.txt" />
22 22 <File Name="patterns.txt" />
23 23 <File Name="phases.txt" />
24 24 <File Name="revisions.txt" />
25 25 <File Name="revsets.txt" />
26 <File Name="scripting.txt" />
26 27 <File Name="subrepos.txt" />
27 28 <File Name="templates.txt" />
28 29 <File Name="urls.txt" />
29 30 </Component>
30 31 </Directory>
31 32 </DirectoryRef>
32 33 </Fragment>
33 34
34 35 </Wix>
General Comments 0
You need to be logged in to leave comments. Login now