diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-23 13:28:08 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-23 13:28:08 -0300 |
commit | f0b1829a485246a876218b94fa5431841a1a76a4 (patch) | |
tree | 98cb45a3c3856af3934a3ee95725ba4e63a1424b | |
parent | 027cdd2f6900eecd7ca5ecd1f4ed4b4ac0685f80 (diff) | |
download | all-f0b1829a485246a876218b94fa5431841a1a76a4.tar.gz all-f0b1829a485246a876218b94fa5431841a1a76a4.tar.bz2 all-f0b1829a485246a876218b94fa5431841a1a76a4.tar.xz all-f0b1829a485246a876218b94fa5431841a1a76a4.zip |
We don't need upgrade.sh iirc
-rwxr-xr-x | upgrade.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/upgrade.sh b/upgrade.sh deleted file mode 100755 index 825c3b5..0000000 --- a/upgrade.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env bash - -export LANG=C - -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 -status media media -status docs docs |