diff --git a/bench/bench.py b/bench/bench.py index 9cce57b4..f359be7c 100644 --- a/bench/bench.py +++ b/bench/bench.py @@ -327,7 +327,7 @@ class BenchSetup(Base): @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 @@ -342,7 +342,7 @@ class BenchSetup(Base): 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 @@ -359,7 +359,7 @@ class BenchSetup(Base): 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 diff --git a/bench/commands/setup.py b/bench/commands/setup.py index b8d4bee3..a6526cda 100755 --- a/bench/commands/setup.py +++ b/bench/commands/setup.py @@ -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