diff options
Diffstat (limited to 'upgrade.sh')
-rwxr-xr-x | upgrade.sh | 30 |
1 files changed, 30 insertions, 0 deletions
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 |