Author: jnioche
Date: Thu Apr 18 09:08:16 2013
New Revision: 1469231
URL: http://svn.apache.org/r1469231
Log:
Fixed detection of job file for distributed mode
Modified:
nutch/trunk/src/bin/crawl
Modified: nutch/trunk/src/bin/crawl
URL:
http://svn.apache.org/viewvc/nutch/trunk/src/bin/crawl?rev=1469231&r1=1469230&r2=1469231&view=diff
==============================================================================
--- nutch/trunk/src/bin/crawl (original)
+++ nutch/trunk/src/bin/crawl Thu Apr 18 09:08:16 2013
@@ -72,7 +72,7 @@ numThreads=50
# determines whether mode based on presence of job file
mode=local
-if [ -f ../nutch-*.job ]; then
+if [ -f ../*nutch-*.job ]; then
mode=distributed
fi