Browse Source

Update replaceVersion.sh (#4142)

The name of the file is wrong in the message in the script
pull/4144/head
Igor Demin 4 months ago committed by GitHub
parent
commit
ae1dca8fa8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      tools/replaceVersion.sh

6
tools/replaceVersion.sh

@ -22,12 +22,12 @@ folders+=(
fi fi
if [ -z "$1" ]; then if [ -z "$1" ]; then
echo "Specify Compose version. For example: ./replace.sh 1.2.0-beta02 1.7.10" echo "Specify Compose version. For example: ./replaceVersion.sh 1.2.0-beta02 1.7.10"
exit 1 exit 1
fi fi
if [ -z "$2" ]; then if [ -z "$2" ]; then
echo "Specify Kotlin version. For example: ./replace.sh 1.2.0-beta02 1.7.10" echo "Specify Kotlin version. For example: ./replaceVersion.sh 1.2.0-beta02 1.7.10"
exit 1 exit 1
fi fi
@ -66,4 +66,4 @@ for folder in "${folders[@]}"
do do
replaceVersionInFolder $folder "**gradle.properties" replaceVersionInFolder $folder "**gradle.properties"
replaceVersionInFolder $folder "**README.md" replaceVersionInFolder $folder "**README.md"
done done

Loading…
Cancel
Save