diff options
author | Teamcity <build@vaadin.com> | 2015-04-17 15:06:09 +0300 |
---|---|---|
committer | Teamcity <build@vaadin.com> | 2015-04-17 15:06:09 +0300 |
commit | aef7d3674fee75c0fb89f01b7386f926c5d2fb76 (patch) | |
tree | ac6f87e6feb6f7c7bb572ffdbf40f0954de45c99 | |
parent | bbf9c43b1f79cd8120e3ba56d55eb54a86463e55 (diff) | |
parent | 8dc0b72bbb41d4c00b8d0e3988eee76cb1059ddf (diff) | |
download | vaadin-framework-aef7d3674fee75c0fb89f01b7386f926c5d2fb76.tar.gz vaadin-framework-aef7d3674fee75c0fb89f01b7386f926c5d2fb76.zip |
Merge branch 'refs/heads/master' into 'snapshot/7.5'
-rwxr-xr-x | scripts/updateSinceTags.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/updateSinceTags.sh b/scripts/updateSinceTags.sh index f07ba7fb7e..a4e60cab2e 100755 --- a/scripts/updateSinceTags.sh +++ b/scripts/updateSinceTags.sh @@ -11,7 +11,7 @@ fi scriptdir=`dirname $0` basedir=$scriptdir"/.." -sincefiles=`find $basedir -name *.java|xargs egrep -Hi "(@since$|@since $)"|grep -v "./work/"|grep -v "./uitest/"|grep -v "/tests/"|cut -d: -f 1|sort|uniq` +sincefiles=`find $basedir -name "*.java"|xargs egrep -Hi "(@since$|@since $)"|grep -v "./work/"|grep -v "./uitest/"|grep -v "/tests/"|cut -d: -f 1|sort|uniq` # Stupid feature detection using an invalid parameter. # Mac requires a parameter for the -i option (creates a backup file with that suffix) @@ -25,6 +25,7 @@ else fi for f in $sincefiles do + echo "Fixing $f..." $sedCmd "s/@since\$/@since $version/g" $f $sedCmd "s/@since \$/@since $version/g" $f done |