From: David Schoonover Date: Wed, 20 Jun 2012 16:13:52 +0000 (-0700) Subject: Deploy needs to npm install to ensure deps are up to date. X-Git-Url: http://git.lttlst.com:3516/?a=commitdiff_plain;h=e6dd8ab840e49912cdd08cd17303562487ce38bc;p=kraken-ui.git Deploy needs to npm install to ensure deps are up to date. --- diff --git a/fabfile/deploy.py b/fabfile/deploy.py index 961e84d..b9f9e61 100644 --- a/fabfile/deploy.py +++ b/fabfile/deploy.py @@ -70,6 +70,7 @@ def update_branch(): with cd(env.target_dir): execute(checkout) run('git pull origin %(git_branch)s' % env) + run('npm install') @task @expand_env