From 5939269c399868462ea8a18ab7a1ef0f73cebb0b Mon Sep 17 00:00:00 2001 From: Joe Di Pol Date: Tue, 5 Mar 2024 14:58:12 -0800 Subject: [PATCH] Remove processing of gradle files because examples are no longer in repo --- etc/scripts/release.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/etc/scripts/release.sh b/etc/scripts/release.sh index 5b02c2dc7e8..45ab5130897 100755 --- a/etc/scripts/release.sh +++ b/etc/scripts/release.sh @@ -131,16 +131,6 @@ update_version(){ mv ${pom}.tmp ${pom} done - # Hack to update helidon.version in build.gradle files - for bfile in `egrep "helidonversion = .*" -r . --include build.gradle | cut -d ':' -f 1 | sort | uniq ` - do - echo "Updating helidonversion property in ${bfile} to ${FULL_VERSION}" - cat ${bfile} | \ - sed -e s@'helidonversion = .*'@"helidonversion = \'${FULL_VERSION}\'"@g \ - > ${bfile}.tmp - mv ${bfile}.tmp ${bfile} - done - # Hack to update helidon-version in doc files for dfile in `egrep ":helidon-version: .*" -r . --include attributes.adoc | cut -d ':' -f 1 | sort | uniq ` do