From 73cdb8a9cdb0f2d0762c2855106ab3f348bbe4fe Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 2 Apr 2015 14:41:44 +0300 Subject: add update.sh for upgrade to new repository urls. How to run: ./upgrade.sh gitlab --- upgrade.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 upgrade.sh diff --git a/upgrade.sh b/upgrade.sh new file mode 100755 index 0000000..2771f41 --- /dev/null +++ b/upgrade.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +function status { + if [ ! -d "$1" ]; then + return + fi + DIR=$(pwd) + cd "$1" + echo "$2:" + URL=$(git config remote.origin.url|sed "s/gitorious.org/gitlab.com/") + git config remote.origin.url ${URL} + echo "set origin to ${URL}" + cd "$DIR" +} + +CMD="$1" + +if [[ "${CMD}" != "gitlab" ]]; then + exit 1 +fi + +status . evol-all +status client-data client-data +status server-code server-code +status server-data server-data +status server-local server-local +status tools tools +status server-code/src/evol evol-hercules +status music music +status manaplus manaplus -- cgit v1.2.3-60-g2f50