You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by le...@apache.org on 2012/07/02 19:05:29 UTC

svn commit: r1356357 - in /nutch/branches/branch-1.5.1: CHANGES.txt src/bin/nutch

Author: lewismc
Date: Mon Jul  2 17:05:27 2012
New Revision: 1356357

URL: http://svn.apache.org/viewvc?rev=1356357&view=rev
Log:
backport of NUTCH-1400 Remove developer -core option for bin/nutch

Modified:
    nutch/branches/branch-1.5.1/CHANGES.txt
    nutch/branches/branch-1.5.1/src/bin/nutch

Modified: nutch/branches/branch-1.5.1/CHANGES.txt
URL: http://svn.apache.org/viewvc/nutch/branches/branch-1.5.1/CHANGES.txt?rev=1356357&r1=1356356&r2=1356357&view=diff
==============================================================================
--- nutch/branches/branch-1.5.1/CHANGES.txt (original)
+++ nutch/branches/branch-1.5.1/CHANGES.txt Mon Jul  2 17:05:27 2012
@@ -2,6 +2,8 @@ Nutch Change Log
 
 Release 1.5.1 - 07/02/2012
 
+* NUTCH-1400 Remove developer -core option for bin/nutch (jnioche)
+
 * NUTCH-1384 Typo in ParseSegment's run-method (Matthias Agethle via markus)
 
 * NUTCH-1398 Upgrade to Hadoop 1.0.3 (jnioche)

Modified: nutch/branches/branch-1.5.1/src/bin/nutch
URL: http://svn.apache.org/viewvc/nutch/branches/branch-1.5.1/src/bin/nutch?rev=1356357&r1=1356356&r2=1356357&view=diff
==============================================================================
--- nutch/branches/branch-1.5.1/src/bin/nutch (original)
+++ nutch/branches/branch-1.5.1/src/bin/nutch Mon Jul  2 17:05:27 2012
@@ -45,7 +45,7 @@ done
 
 # if no args specified, show usage
 if [ $# = 0 ]; then
-  echo "Usage: nutch [-core] COMMAND"
+  echo "Usage: nutch COMMAND"
   echo "where COMMAND is one of:"
   echo "  crawl             one-step crawler for intranets"
   echo "  readdb            read / dump crawl db"
@@ -76,10 +76,6 @@ if [ $# = 0 ]; then
   echo " or"
   echo "  CLASSNAME         run the class named CLASSNAME"
   echo "Most commands print help when invoked w/o parameters."
-  echo ""
-  echo "Expert: -core option is for developers only. It avoids building the job jar, "
-  echo "        instead it simply includes classes compiled with ant compile-core. "
-  echo "        NOTE: this works only for jobs executed in 'local' mode"
   exit 1
 fi