HADOOP-11307. create-release script should run git clean first (kasha)
This commit is contained in:
parent
1a47f890ba
commit
4fb96dbe3b
|
@ -47,6 +47,9 @@ RC_LABEL=$1
|
||||||
# Extract Hadoop version from POM
|
# Extract Hadoop version from POM
|
||||||
HADOOP_VERSION=`cat pom.xml | grep "<version>" | head -1 | sed 's|^ *<version>||' | sed 's|</version>.*$||'`
|
HADOOP_VERSION=`cat pom.xml | grep "<version>" | head -1 | sed 's|^ *<version>||' | sed 's|</version>.*$||'`
|
||||||
|
|
||||||
|
# Setup git
|
||||||
|
GIT=${GIT:-git}
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "*****************************************************************"
|
echo "*****************************************************************"
|
||||||
echo
|
echo
|
||||||
|
@ -70,6 +73,9 @@ fi
|
||||||
|
|
||||||
ARTIFACTS_DIR="target/artifacts"
|
ARTIFACTS_DIR="target/artifacts"
|
||||||
|
|
||||||
|
# git clean to clear any remnants from previous build
|
||||||
|
run ${GIT} clean -xdf
|
||||||
|
|
||||||
# mvn clean for sanity
|
# mvn clean for sanity
|
||||||
run ${MVN} clean
|
run ${MVN} clean
|
||||||
|
|
||||||
|
|
|
@ -1122,6 +1122,7 @@ Release 2.6.0 - 2014-11-18
|
||||||
HADOOP-9576. Changed NetUtils#wrapException to throw EOFException instead
|
HADOOP-9576. Changed NetUtils#wrapException to throw EOFException instead
|
||||||
of wrapping it as IOException. (Steve Loughran via jianhe)
|
of wrapping it as IOException. (Steve Loughran via jianhe)
|
||||||
|
|
||||||
|
|
||||||
Release 2.5.2 - 2014-11-10
|
Release 2.5.2 - 2014-11-10
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -1138,6 +1139,7 @@ Release 2.5.2 - 2014-11-10
|
||||||
|
|
||||||
HADOOP-11260. Patch up Jetty to disable SSLv3. (Mike Yoder via kasha)
|
HADOOP-11260. Patch up Jetty to disable SSLv3. (Mike Yoder via kasha)
|
||||||
|
|
||||||
|
HADOOP-11307. create-release script should run git clean first (kasha)
|
||||||
|
|
||||||
Release 2.5.1 - 2014-09-05
|
Release 2.5.1 - 2014-09-05
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue