Trying to get web_build to run in install - see https://stackoverflow.com/questions/20194565/running-custom-setuptools-build-during-install
This commit is contained in:
parent
bfdc9d7d46
commit
f607c6757f
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -61,9 +61,9 @@ class WebBuildCommand(distutils.cmd.Command):
|
||||||
|
|
||||||
|
|
||||||
class InstallCommand(install):
|
class InstallCommand(install):
|
||||||
def run(self):
|
def do_egg_install(self):
|
||||||
self.run_command('web_build')
|
self.run_command('web_build')
|
||||||
install.run(self)
|
install.do_egg_install(self)
|
||||||
|
|
||||||
|
|
||||||
def path(fname=''):
|
def path(fname=''):
|
||||||
|
|
Loading…
Reference in a new issue