adding logging
This commit is contained in:
parent
f3f5b9eeb3
commit
2f4aee49e2
|
@ -264,7 +264,7 @@ class InitializeApp(Command):
|
||||||
and be used when certificates are discovered by Lemur.
|
and be used when certificates are discovered by Lemur.
|
||||||
"""
|
"""
|
||||||
option_list = (
|
option_list = (
|
||||||
Option('-p', '--password', dest='password')
|
Option('-p', '--password', dest='password'),
|
||||||
)
|
)
|
||||||
|
|
||||||
def run(self, password):
|
def run(self, password):
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -100,7 +100,8 @@ class BuildStatic(Command):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
log.info("running [npm install --quiet]")
|
log.info("running [npm install --quiet] in {0}".format(ROOT))
|
||||||
|
|
||||||
check_output(['npm', 'install', '--quiet'], cwd=ROOT)
|
check_output(['npm', 'install', '--quiet'], cwd=ROOT)
|
||||||
|
|
||||||
log.info("running [gulp build]")
|
log.info("running [gulp build]")
|
||||||
|
|
Loading…
Reference in New Issue