From 4a5cb2a25f32e195dcfe56a3038f056551d2fc81 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 14 Dec 2014 14:46:46 +0300 Subject: Allow add child repos with current protocol and not always git@. --- init.sh | 49 ++++++++++++++++++++++++++++--------------------- 1 file changed, 28 insertions(+), 21 deletions(-) diff --git a/init.sh b/init.sh index 35ac93b..4571ec5 100755 --- a/init.sh +++ b/init.sh @@ -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 -- cgit v1.2.3-60-g2f50