From 9a1ae214def602846198bc360602038f2918e3ad Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Mon, 30 Jul 2012 13:57:32 +0200 Subject: [PATCH] #2261 - adding rewrites of Akka github urls to solidify on release --- project/scripts/release | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/project/scripts/release b/project/scripts/release index a6e14a227e..b4f9b9cda2 100755 --- a/project/scripts/release +++ b/project/scripts/release @@ -203,6 +203,12 @@ try git checkout -b ${release_branch} # find and replace the version try ${script_dir}/find-replace ${current_version} ${version} +#find and replace github links +try ${script_dir}/find-replace http://github.com/akka/akka/tree/master http://github.com/akka/akka/tree/v${version} +try ${script_dir}/find-replace https://github.com/akka/akka/tree/master http://github.com/akka/akka/tree/v${version} +try ${script_dir}/find-replace http://github.com/akka/akka/blob/master http://github.com/akka/akka/tree/v${version} +try ${script_dir}/find-replace https://github.com/akka/akka/blob/master http://github.com/akka/akka/tree/v${version} + # start clean try sbt clean