Revert "Fix sync scripts"

This reverts commit 33052562bc.
This commit is contained in:
Marcus Da Coregio
2023-07-20 10:38:53 -03:00
parent 603c16ad5f
commit 8d8e6d0056
5 changed files with 5 additions and 5 deletions

View File

@@ -6,4 +6,4 @@ if [[ "$BOOT_VERSION" == "" ]]; then
echo "Missing boot-version. Usage: sync-boot-version.sh <boot-version>"
exit 1
fi
find . -mindepth 2 -name build.gradle | xargs sed -i '' -E "s/(id 'org.springframework.boot' version ')[^']+'/\1$BOOT_VERSION'/"
find -mindepth 2 -name build.gradle | xargs sed -i -E "s/(id 'org.springframework.boot' version ').*?'/\1$BOOT_VERSION'/"