##// 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 <?xml version="1.0" encoding="utf-8"?>
1 <?xml version="1.0" encoding="utf-8"?>
2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3
3
4 <?include guids.wxi ?>
4 <?include guids.wxi ?>
5 <?include defines.wxi ?>
5 <?include defines.wxi ?>
6
6
7 <Fragment>
7 <Fragment>
8 <DirectoryRef Id="INSTALLDIR">
8 <DirectoryRef Id="INSTALLDIR">
9 <Directory Id="helpdir" Name="help" FileSource="$(var.SourceDir)">
9 <Directory Id="helpdir" Name="help" FileSource="$(var.SourceDir)">
10 <Component Id="helpFolder" Guid="$(var.helpFolder.guid)" Win64='$(var.IsX64)'>
10 <Component Id="helpFolder" Guid="$(var.helpFolder.guid)" Win64='$(var.IsX64)'>
11 <File Name="config.txt" KeyPath="yes" />
11 <File Name="config.txt" KeyPath="yes" />
12 <File Name="dates.txt" />
12 <File Name="dates.txt" />
13 <File Name="diffs.txt" />
13 <File Name="diffs.txt" />
14 <File Name="environment.txt" />
14 <File Name="environment.txt" />
15 <File Name="extensions.txt" />
15 <File Name="extensions.txt" />
16 <File Name="filesets.txt" />
16 <File Name="filesets.txt" />
17 <File Name="glossary.txt" />
17 <File Name="glossary.txt" />
18 <File Name="hgignore.txt" />
18 <File Name="hgignore.txt" />
19 <File Name="hgweb.txt" />
19 <File Name="hgweb.txt" />
20 <File Name="merge-tools.txt" />
20 <File Name="merge-tools.txt" />
21 <File Name="multirevs.txt" />
21 <File Name="multirevs.txt" />
22 <File Name="patterns.txt" />
22 <File Name="patterns.txt" />
23 <File Name="phases.txt" />
23 <File Name="phases.txt" />
24 <File Name="revisions.txt" />
24 <File Name="revisions.txt" />
25 <File Name="revsets.txt" />
25 <File Name="revsets.txt" />
26 <File Name="scripting.txt" />
26 <File Name="subrepos.txt" />
27 <File Name="subrepos.txt" />
27 <File Name="templates.txt" />
28 <File Name="templates.txt" />
28 <File Name="urls.txt" />
29 <File Name="urls.txt" />
29 </Component>
30 </Component>
30 </Directory>
31 </Directory>
31 </DirectoryRef>
32 </DirectoryRef>
32 </Fragment>
33 </Fragment>
33
34
34 </Wix>
35 </Wix>
General Comments 0
You need to be logged in to leave comments. Login now