Commit 90d17964 by Brandon Moore Committed by Sébastien Eustace

Made installation text more clear on dependencies (#1528)

parent bf6ad084
...@@ -348,7 +348,7 @@ By default `poetry` will install your project's package everytime you run `insta ...@@ -348,7 +348,7 @@ By default `poetry` will install your project's package everytime you run `insta
$ poetry install $ poetry install
Installing dependencies from lock file Installing dependencies from lock file
Nothing to install or update No dependencies to install or update
- Installing <your-package-name> (x.x.x) - Installing <your-package-name> (x.x.x)
......
...@@ -130,7 +130,7 @@ By default `poetry` will install your project's package everytime you run `insta ...@@ -130,7 +130,7 @@ By default `poetry` will install your project's package everytime you run `insta
$ poetry install $ poetry install
Installing dependencies from lock file Installing dependencies from lock file
Nothing to install or update No dependencies to install or update
- Installing <your-package-name> (x.x.x) - Installing <your-package-name> (x.x.x)
......
...@@ -234,7 +234,7 @@ class Installer: ...@@ -234,7 +234,7 @@ class Installer:
# Execute operations # Execute operations
actual_ops = [op for op in ops if not op.skipped] actual_ops = [op for op in ops if not op.skipped]
if not actual_ops and (self._execute_operations or self._dry_run): if not actual_ops and (self._execute_operations or self._dry_run):
self._io.write_line("Nothing to install or update") self._io.write_line("No dependencies to install or update")
if actual_ops and (self._execute_operations or self._dry_run): if actual_ops and (self._execute_operations or self._dry_run):
installs = [] installs = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment