Skip to content

Commit

Permalink
Changed scripts to ignore target.
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrapCodes committed Nov 10, 2014
1 parent 5167bea commit 4eaec65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev/change-version-to-2.10.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# limitations under the License.
#

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

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

0 comments on commit 4eaec65

Please sign in to comment.