[fix] take first result on YB_RELEASE check #35
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Before running
./install_software.sh 2024.1.3.0
would have multi-line values for YB_RELEASE, YB_PACKAGE_URL, and YB_PACKAGE_NAME:This would cause the install script to fail since
YB_PACKAGE_URL
is not valid.wget
would fail to grabhttps://downloads.yugabyte.com/releases/2024.1.3.0/yugabyte-2024.1.3.0-b105
above.By taking the first result using
| head -n 1
the install script works fine:In this case,
wget https://downloads.yugabyte.com/releases/2024.1.3.0/yugabyte-2024.1.3.0-b105-linux-x86_64.tar.gz
ends up succeedingI believe the root cause is that we see these 3 versions mentioned in release tags:
So the
grep -Eo "2024.1.3.0-b[0-9]+"
matches all 3 and returns2024.1.3.0-b105
3 times.