HADOOP-6314. Fix "fs -help" for the "-count" commond. Contributed by Ravi Phulari
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@836019 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2eba5972ed
commit
cdcb8514a0
@ -45,6 +45,9 @@ Trunk (unreleased changes)
|
||||
|
||||
HADOOP-6341. Fix test-patch.sh for checkTests function. (gkesavan)
|
||||
|
||||
HADOOP-6314. Fix "fs -help" for the "-count" commond. (Ravi Phulari via
|
||||
szetszwo)
|
||||
|
||||
Release 0.21.0 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -1568,7 +1568,7 @@ private void printHelp(String cmd) {
|
||||
System.out.println(chown);
|
||||
} else if ("chgrp".equals(cmd)) {
|
||||
System.out.println(chgrp);
|
||||
} else if (Count.matches(cmd)) {
|
||||
} else if (Count.NAME.equals(cmd)) {
|
||||
System.out.println(Count.DESCRIPTION);
|
||||
} else if ("help".equals(cmd)) {
|
||||
System.out.println(help);
|
||||
|
Loading…
Reference in New Issue
Block a user