-
-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Create a script to update to a different Boost version.
So far, this is what I have:
#!/bin/bash
NEW_BOOST_VERSION="$1"
CURRENT_BOOST_COMMIT_SHA="$(git rev-parse HEAD)"
git checkout "boost-$NEW_BOOST_VERSION"
git cherry-pick "$CURRENT_BOOST_COMMIT_SHA"
git commit -am "Apply CMake changes to enable project usage as git submodule directly."
git tag -s "boost-$NEW_BOOST_VERSION-cmake-git-submodule" --file=../cmake-git-submodule.tag.msg
git push --tags
I can test this when the next Boost release comes out.
Reactions are currently unavailable
Sub-issues
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request