diff options
-rwxr-xr-x | init.sh | 49 |
1 files changed, 28 insertions, 21 deletions
@@ -1,42 +1,49 @@ #!/bin/bash CMD="$1" +PROTO="git@gitorious.org:" if [[ -z "${CMD}" ]]; then export CMD="default" fi +STR=`git remote -v|grep "https://"` +if [[ -n "${STR}" ]]; then + export PROTO="https://gitorious.org/" +fi +exit + if [[ "${CMD}" == "all" || "${CMD}" == "default" ]]; then - git clone git@gitorious.org:evol/clientdata.git client-data - git clone git@gitorious.org:evol/hercules.git server-code - git clone git@gitorious.org:evol/serverdata.git server-data - git clone git@gitorious.org:evol/evol-tools.git tools - git clone git@gitorious.org:evol/evol-hercules.git server-code/src/evol - git clone git@gitorious.org:evol/evol-local.git server-local + git clone ${PROTO}evol/clientdata.git client-data + git clone ${PROTO}evol/hercules.git server-code + git clone ${PROTO}evol/serverdata.git server-data + git clone ${PROTO}evol/evol-tools.git tools + git clone ${PROTO}evol/evol-hercules.git server-code/src/evol + git clone ${PROTO}evol/evol-local.git server-local ln -s server-code/src/evol server-plugin elif [[ "${CMD}" == "server" ]]; then - git clone git@gitorious.org:evol/hercules.git server-code - git clone git@gitorious.org:evol/serverdata.git server-data - git clone git@gitorious.org:evol/evol-hercules.git server-code/src/evol + git clone ${PROTO}evol/hercules.git server-code + git clone ${PROTO}evol/serverdata.git server-data + git clone ${PROTO}evol/evol-hercules.git server-code/src/evol ln -s server-code/src/evol server-plugin elif [[ "${CMD}" == "client" ]]; then - git clone git@gitorious.org:evol/clientdata.git client-data - git clone git@gitorious.org:evol/evol-tools.git tools + git clone ${PROTO}evol/clientdata.git client-data + git clone ${PROTO}evol/evol-tools.git tools elif [[ "${CMD}" == "music" ]]; then - git clone git@gitorious.org:evol/evol-music.git music + git clone ${PROTO}evol/evol-music.git music elif [[ "${CMD}" == "local" ]]; then - git clone git@gitorious.org:evol/evol-local.git server-local - git clone git@gitorious.org:evol/hercules.git server-code - git clone git@gitorious.org:evol/serverdata.git server-data - git clone git@gitorious.org:evol/evol-hercules.git server-code/src/evol - git clone git@gitorious.org:evol/evol-tools.git tools + git clone ${PROTO}evol/evol-local.git server-local + git clone ${PROTO}evol/hercules.git server-code + git clone ${PROTO}evol/serverdata.git server-data + git clone ${PROTO}evol/evol-hercules.git server-code/src/evol + git clone ${PROTO}evol/evol-tools.git tools ln -s server-code/src/evol server-plugin elif [[ "${CMD}" == "tools" ]]; then - git clone git@gitorious.org:evol/evol-tools.git tools + git clone ${PROTO}evol/evol-tools.git tools elif [[ "${CMD}" == "manaplus" ]]; then - git clone git@gitorious.org:manaplus/manaplus.git manaplus + git clone ${PROTO}manaplus/manaplus.git manaplus fi if [[ "${CMD}" == "all" ]]; then - git clone git@gitorious.org:evol/evol-music.git music - git clone git@gitorious.org:manaplus/manaplus.git manaplus + git clone ${PROTO}evol/evol-music.git music + git clone ${PROTO}manaplus/manaplus.git manaplus fi |