Skip to content

Commit

Permalink
Merge branch 'develop' into uri-path
Browse files Browse the repository at this point in the history
  • Loading branch information
Aradhya-Tripathi committed Feb 23, 2022
2 parents 3dcd28f + 9cd100a commit 60084fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bench/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def backups(self):

@job(title="Setting Up Bench Dependencies", success="Bench Dependencies Set Up")
def requirements(self, apps=None):
"""Install and upgrade all installed apps on given Bench if apps not specified
"""Install and upgrade specified / all installed apps on given Bench
"""
from bench.app import App

Expand All @@ -342,7 +342,7 @@ def requirements(self, apps=None):
App(app, bench=self.bench, to_clone=False).install( skip_assets=True, restart_bench=False)

def python(self, apps=None):
"""Install and upgrade Python dependencies for installed apps on given Bench if app not specified
"""Install and upgrade Python dependencies for specified / all installed apps on given Bench
"""
import bench.cli

Expand All @@ -359,7 +359,7 @@ def python(self, apps=None):
self.run(f"{self.bench.python} -m pip install {quiet_flag} --upgrade -e {app_path}")

def node(self, apps=None):
"""Install and upgrade Node dependencies for all apps on given Bench if app not specified
"""Install and upgrade Node dependencies for specified / all apps on given Bench
"""
from bench.utils.bench import update_node_packages

Expand Down
2 changes: 1 addition & 1 deletion bench/commands/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def setup_requirements(node=False, python=False, dev=False, apps=None):
"""
Setup Python and Node dependencies.
You can optionally specify one or more apps to specify dependencies for.
You can optionally specify one or more apps to setup dependencies for.
"""
from bench.bench import Bench

Expand Down

0 comments on commit 60084fd

Please sign in to comment.