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:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/install-message.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/install-message.sh b/scripts/install-message.sh
new file mode 100755
index 000000000..36754c625
--- /dev/null
+++ b/scripts/install-message.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+if [ "x$npm_config_loglevel" = "xsilent" ]; then
+ exit
+fi
+
+cat <<MESSAGE
+
+Thanks for installing version $npm_package_version of npm.
+
+Last few items from the changelog:
+
+`tail -n 20 doc/changelog.md`
+
+MESSAGE