setup: add missing hgext.fsmonitor
authorSean Farley <sean@farley.io>
Tue, 22 Mar 2016 16:08:02 -0700
changeset 28625 776fd2e2cf5a
parent 28624 345f4fa4cc89
child 28626 60ee2593a270
setup: add missing hgext.fsmonitor Before this patch, fsmonitor was not installed along with other extensions. It did correctly build the C files needed but forgot to copy over the python files. This patch fixes it by adding fsmonitor and fsmonitor.pywatchman to the correct install variable.
setup.py
--- a/setup.py	Fri Mar 25 16:23:23 2016 -0500
+++ b/setup.py	Tue Mar 22 16:08:02 2016 -0700
@@ -505,8 +505,9 @@
 
 packages = ['mercurial', 'mercurial.hgweb', 'mercurial.httpclient',
             'mercurial.pure',
-            'hgext', 'hgext.convert', 'hgext.highlight', 'hgext.largefiles',
-            'hgext.zeroconf', 'hgext3rd']
+            'hgext', 'hgext.convert', 'hgext.fsmonitor',
+            'hgext.fsmonitor.pywatchman', 'hgext.highlight',
+            'hgext.largefiles', 'hgext.zeroconf', 'hgext3rd']
 
 common_depends = ['mercurial/util.h']