Skip to content

Commit

Permalink
fix: get-app sets up node requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
gavindsouza committed May 4, 2020
1 parent fc88d78 commit 03e512f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bench/app.py
Expand Up @@ -177,8 +177,8 @@ def install_app(app, bench_path=".", verbose=False, no_cache=False, postprocess=
app_path = os.path.join(bench_path, "apps", app)
cache_flag = "--no-cache-dir" if no_cache else ""

exec_cmd("{pip} install {quiet} -U -e {app} {no_cache}".format(pip=pip_path,
quiet=quiet_flag, app=app_path, no_cache=cache_flag))
exec_cmd("{pip} install {quiet} -U -e {app} {no_cache}".format(pip=pip_path, quiet=quiet_flag, app=app_path, no_cache=cache_flag))
exec_cmd("yarn install", cwd=app_path)
add_to_appstxt(app, bench_path=bench_path)

if postprocess:
Expand Down

0 comments on commit 03e512f

Please sign in to comment.