Skip to content

Commit

Permalink
Addressing TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
pwendell committed Nov 17, 2014
1 parent b3105ff commit 9ac4381
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions dev/create-release/create-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ if [[ ! "$@" =~ --package-only ]]; then

echo "Creating tag $GIT_TAG at the head of $BRANCH_NAME"
git checkout -f $BRANCH_NAME
# TODO: We should update other things in the repo here
find . -name pom.xml |grep -v dev | xargs -I {} sed -i \
find . -name pom.xml -o -name package.scala | grep -v dev | xargs -I {} sed -i \
-e "s/${RELEASE_VERSION}-SNAPSHOT/$RELEASE_VERSION/" {}
git commit -a -m "Preparing Spark release $GIT_TAG"
git tag $GIT_TAG
Expand Down Expand Up @@ -102,7 +101,7 @@ if [[ ! "$@" =~ --package-only ]]; then
done
popd

find . -name pom.xml |grep -v dev | xargs -I {} sed -i \
find . -name pom.xml -o -name package.scala | grep -v dev | xargs -I {} sed -i \
-e "s/$RELEASE_VERSION/${NEXT_VERSION}-SNAPSHOT/" {}
git commit -a -m "Preparing development version ${NEXT_VERSION}-SNAPSHOT"

Expand Down

0 comments on commit 9ac4381

Please sign in to comment.