You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by jn...@apache.org on 2012/06/20 11:29:51 UTC

svn commit: r1352009 - in /nutch/branches/nutchgora: CHANGES.txt src/bin/nutch

Author: jnioche
Date: Wed Jun 20 09:29:50 2012
New Revision: 1352009

URL: http://svn.apache.org/viewvc?rev=1352009&view=rev
Log:
NUTCH-1400 -core option removed

Modified:
    nutch/branches/nutchgora/CHANGES.txt
    nutch/branches/nutchgora/src/bin/nutch

Modified: nutch/branches/nutchgora/CHANGES.txt
URL: http://svn.apache.org/viewvc/nutch/branches/nutchgora/CHANGES.txt?rev=1352009&r1=1352008&r2=1352009&view=diff
==============================================================================
--- nutch/branches/nutchgora/CHANGES.txt (original)
+++ nutch/branches/nutchgora/CHANGES.txt Wed Jun 20 09:29:50 2012
@@ -3,6 +3,8 @@ Nutch Change Log
 Release 2.0 (08/06/2012) ddmmyyy
 Full Jira report - https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10680&version=12314893
 
+* NUTCH-1400 Remove developer -core option for bin/nutch (jnioche)
+
 * NUTCH-1399 TestProtocolHttpClient fails (jnioche)
 
 * NUTCH-1404 Nutch script fails to find job file in deploy mode (sidabatra, jnioche)

Modified: nutch/branches/nutchgora/src/bin/nutch
URL: http://svn.apache.org/viewvc/nutch/branches/nutchgora/src/bin/nutch?rev=1352009&r1=1352008&r2=1352009&view=diff
==============================================================================
--- nutch/branches/nutchgora/src/bin/nutch (original)
+++ nutch/branches/nutchgora/src/bin/nutch Wed Jun 20 09:29:50 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 " inject		inject new urls into the database"
@@ -65,10 +65,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