From 594271c35878f960eb1aad08a40422734c6debd6 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Thu, 5 Feb 2015 13:30:04 -0500 Subject: [PATCH] Add wrapper script that produces commits for releases Change-Id: Icb2c12100c8e3eaa622f96956769ca80ee95ed89 Signed-off-by: Thanh Ha --- odl-patches.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 odl-patches.sh diff --git a/odl-patches.sh b/odl-patches.sh new file mode 100755 index 00000000..86bf6f18 --- /dev/null +++ b/odl-patches.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +project=${PWD##*/} + +git apply /tmp/patches/${project}.patch +git commit -asm "Applying the Helium SR2 release patch" +find . -name pom.xml | xargs grep SNAPSHOT +version-bump.sh +git commit -asm "Bumping versions by 0.0.1 after the Helium SR2 release" +find . -name pom.xml | xargs grep Helium + -- 2.16.6