From 61017bc613c12739792fb90ce901d57e6c704ff0 Mon Sep 17 00:00:00 2001 From: Marek Gradzki Date: Tue, 9 Jan 2018 14:11:26 +0100 Subject: Add script for honeycomb version bump The script replaces version string in all files from the Git index. Usage: ./bump_hc_version.sh 1.18.01-SNAPSHOT 1.18.01-RC1 Change-Id: Icee55617dd0cbcdd97c2a1c19f77986f7300e057 Signed-off-by: Marek Gradzki --- scripts/bump_hc_version.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 scripts/bump_hc_version.sh (limited to 'scripts') diff --git a/scripts/bump_hc_version.sh b/scripts/bump_hc_version.sh new file mode 100755 index 000000000..d1521626c --- /dev/null +++ b/scripts/bump_hc_version.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# Replaces version string in all files from the Git index +# Usage: +# ./bump_hc_version.sh 1.2.3-SNAPSHOT 1.2.3-RC1 + +if [ "$#" -ne 2 ]; then + echo "Usage: ./bump_hc_version.sh OLD_VERSION NEW_VERSION" + exit 1 +fi + +OLD_VERSION=$1 +NEW_VERSION=$2 +BUMP_SCRIPT_FILENAME=$(basename "$0") +GIT_ROOT=$(git rev-parse --show-toplevel) + +cd $GIT_ROOT + +for i in $(git ls-files); do + sed -i "s/${OLD_VERSION}/${NEW_VERSION}/g" $i +done + +cd - -- cgit 1.2.3-korg