changeset 17715:8dd280b64de1

Display usage of news as command after installing a package (patch #7708)
author Carnë Draug <carandraug@octave.org>
date Mon, 21 Oct 2013 22:57:34 +0100
parents e243a3a19831
children e48f5a52e838
files scripts/pkg/private/install.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/pkg/private/install.m	Mon Oct 21 12:58:42 2013 -0700
+++ b/scripts/pkg/private/install.m	Mon Oct 21 22:57:34 2013 +0100
@@ -336,7 +336,7 @@
   ## we are checking if desc exists too because it's possible to ge to this point
   ## without creating it such as giving an invalid filename for the package
   if (exist ("desc", "var") && exist (fullfile (desc.dir, "packinfo", "NEWS"), "file"))
-    printf ("For information about changes from previous versions of the %s package, run 'news (\"%s\")'.\n",
+    printf ("For information about changes from previous versions of the %s package, run 'news %s'.\n",
             desc.name, desc.name);
   endif