Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make bump-version.sh also update the version in documentation sample outputs #6608

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions scripts/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ echo "* Bumping version in Dockerfile.rhel"
sed -i "s/\(version=\).*/\1${NEW_VERSION}/g" Dockerfile.rhel
check_version Dockerfile.rhel

echo "* Bumping version in documentation sample outputs"
# globstar: allows the '**' to recursively try to find file and directories
# nullglob: filename patterns that don't match any filenames are expanded to nothing rather than remaining unexpanded.
shopt -s globstar nullglob
for file in ./docs/website/docs/**/docs-mdx/**/*.mdx; do
sed -i 's/\(odo version: v\).*/\1'"${NEW_VERSION}"'/g' "$file"
done

echo
echo "****************************************************************************************"
echo "* Don't forget to update homebrew package at https://github.com/kadel/homebrew-odo ! *"
echo "****************************************************************************************"
Expand Down