Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2011-04-30 23:57:50 +0400
committerisaacs <i@izs.me>2011-04-30 23:57:50 +0400
commit8542b72b1e3ccf5e30c3b8a66f185afe35a38473 (patch)
tree4a9502d879af52a2e54ba3b44de76145f03b187e /scripts
parent49cf11421d3813c97d5c60d834e54a06359c53f6 (diff)
a bit better output
Diffstat (limited to 'scripts')
-rw-r--r--scripts/clean-old.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/clean-old.sh b/scripts/clean-old.sh
index da61770a2..668895630 100644
--- a/scripts/clean-old.sh
+++ b/scripts/clean-old.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# look for old 0.x cruft, and get rid of it.
-# we're already in the npm folder
+# Should already be sitting in the npm folder.
node="$NODE"
if [ "x$node" = "x" ]; then
@@ -46,8 +46,8 @@ if ! [ "x$packages" = "x" ]; then
for pkg in $packages; do
echo " $pkg"
done
- echo "Make a note of these. You may install them with"
- echo "npm 1.0 when this process is completed."
+ echo "Make a note of these. You may want to install them"
+ echo "with npm 1.0 when this process is completed."
echo ""
fi
@@ -121,4 +121,7 @@ for prefix in $PREFIXES; do
done
done
+echo ""
+echo 'All clean!'
+
exit 0