diff --git a/src/install.js b/src/install.js index 2cf68a43..b3a7352a 100644 --- a/src/install.js +++ b/src/install.js @@ -39,8 +39,8 @@ class Install extends Command { Usage: ppm install [...] ppm install @ - ppm install [-b ] - ppm install / [-b ] + ppm install [-b ] + ppm install / [-b ] ppm install --packages-file my-packages.txt ppm i (with any of the previous argument usage) @@ -565,7 +565,7 @@ Run ppm -v after installing Git to see what version has been detected.\ const repo = Git.open(cloneDir); data.sha = version; const checked = repo.checkoutRef(`refs/tags/${version}`, false) || repo.checkoutReference(version, false); - if (!checked) { throw `Can't find the branch, tag, or commit referenced by ${version}`; } + if (!checked) { throw `Can't find the branch or tag referenced by ${version}`; } } else { const sha = this.getRepositoryHeadSha(cloneDir); data.sha = sha;