Skip to main content
summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMatthias Sohn2011-12-12 22:43:42 +0000
committerMatthias Sohn2011-12-12 22:43:42 +0000
commitea5255387a9187f0135f8b28d186e35bf6078b51 (patch)
tree881f30aa570cca6dc0a175a9b0e303d230a399cb /tools
parent7468eeecac38ee85c1efefe73ba0b13efce44936 (diff)
downloadegit-github-ea5255387a9187f0135f8b28d186e35bf6078b51.tar.gz
egit-github-ea5255387a9187f0135f8b28d186e35bf6078b51.tar.xz
egit-github-ea5255387a9187f0135f8b28d186e35bf6078b51.zip
Fix version.sh
Missed to handle org.eclipse.egit.github.core/pom-jar.xml Change-Id: I1ce2a9012dde5ea6d54b23a7a072bc856679daa5 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/version.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/version.sh b/tools/version.sh
index 09a37be2..d49ecf20 100755
--- a/tools/version.sh
+++ b/tools/version.sh
@@ -175,7 +175,7 @@ perl -pi~ -e '
s{<(version)>[^<\$]*</\1>}{<${1}>'"$POM_V"'</${1}>};
}
s{<(jgit-version)>[^<]*</\1>}{<${1}>'"$J"'</${1}>};
- ' $(git ls-files | grep pom.xml)
+ ' $(git ls-files | grep pom.*.xml)
find . -name '*~' | xargs rm -f
git diff

Back to the top