Skip to content

Commit

Permalink
Various fixes
Browse files Browse the repository at this point in the history
Conflicts:
	dev/change-version-to-2.10.sh
	dev/change-version-to-2.11.sh
  • Loading branch information
pwendell authored and ScrapCodes committed Nov 10, 2014
1 parent 0be5a9d commit ec402ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dev/change-version-to-2.10.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

find \( -name 'pom.xml' -a -not -path 'target' \) -exec sed -i 's|\(artifactId.*\)_2.11|\1_2.10|g' {} \;
find . -name 'pom.xml' | grep -v target \
| xargs -I {} sed -i -e 's|\(artifactId.*\)_2.11|\1_2.10|g' {}
3 changes: 2 additions & 1 deletion dev/change-version-to-2.11.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@
# limitations under the License.
#

find \( -name 'pom.xml' -a -not -path 'target' \) -exec sed -i 's|\(artifactId.*\)_2.10|\1_2.11|g' {} \;
find . -name 'pom.xml' | grep -v target \
| xargs -I {} sed -i -e 's|\(artifactId.*\)_2.10|\1_2.11|g' {}

0 comments on commit ec402ab

Please sign in to comment.