HADOOP-7072. Fixing incorrect count of parameters.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1054853 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
17b01dcc58
commit
93f2dfcdb4
|
@ -26,7 +26,7 @@ parseArgs() {
|
||||||
HUDSON)
|
HUDSON)
|
||||||
### Set HUDSON to true to indicate that this script is being run by Hudson
|
### Set HUDSON to true to indicate that this script is being run by Hudson
|
||||||
HUDSON=true
|
HUDSON=true
|
||||||
if [[ $# != 18 ]] ; then
|
if [[ $# != 17 ]] ; then
|
||||||
echo "ERROR: usage $0 HUDSON <PATCH_DIR> <SUPPORT_DIR> <PS_CMD> <WGET_CMD> <JIRACLI> <SVN_CMD> <GREP_CMD> <PATCH_CMD> <FINDBUGS_HOME> <FORREST_HOME> <ECLIPSE_HOME> <PYTHON_HOME> <WORKSPACE_BASEDIR> <JIRA_PASSWD> <CURL_CMD> <DEFECT> "
|
echo "ERROR: usage $0 HUDSON <PATCH_DIR> <SUPPORT_DIR> <PS_CMD> <WGET_CMD> <JIRACLI> <SVN_CMD> <GREP_CMD> <PATCH_CMD> <FINDBUGS_HOME> <FORREST_HOME> <ECLIPSE_HOME> <PYTHON_HOME> <WORKSPACE_BASEDIR> <JIRA_PASSWD> <CURL_CMD> <DEFECT> "
|
||||||
cleanupAndExit 0
|
cleanupAndExit 0
|
||||||
fi
|
fi
|
||||||
|
@ -44,8 +44,8 @@ parseArgs() {
|
||||||
PYTHON_HOME=${13}
|
PYTHON_HOME=${13}
|
||||||
BASEDIR=${14}
|
BASEDIR=${14}
|
||||||
JIRA_PASSWD=${15}
|
JIRA_PASSWD=${15}
|
||||||
CURL=${17}
|
CURL=${16}
|
||||||
defect=${18}
|
defect=${17}
|
||||||
|
|
||||||
### Retrieve the defect number
|
### Retrieve the defect number
|
||||||
if [ -z "$defect" ] ; then
|
if [ -z "$defect" ] ; then
|
||||||
|
@ -63,7 +63,7 @@ parseArgs() {
|
||||||
DEVELOPER)
|
DEVELOPER)
|
||||||
### Set HUDSON to false to indicate that this script is being run by a developer
|
### Set HUDSON to false to indicate that this script is being run by a developer
|
||||||
HUDSON=false
|
HUDSON=false
|
||||||
if [[ $# != 10 ]] ; then
|
if [[ $# != 9 ]] ; then
|
||||||
echo "ERROR: usage $0 DEVELOPER <PATCH_FILE> <SCRATCH_DIR> <SVN_CMD> <GREP_CMD> <PATCH_CMD> <FINDBUGS_HOME> <FORREST_HOME> <WORKSPACE_BASEDIR>"
|
echo "ERROR: usage $0 DEVELOPER <PATCH_FILE> <SCRATCH_DIR> <SVN_CMD> <GREP_CMD> <PATCH_CMD> <FINDBUGS_HOME> <FORREST_HOME> <WORKSPACE_BASEDIR>"
|
||||||
cleanupAndExit 0
|
cleanupAndExit 0
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue