summaryrefslogtreecommitdiff
path: root/init.sh
blob: d9b8f11c9692e317c637fd810742ba60477ce053 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env bash

export LANG=C
export GROUP=revolt

CMD="$1"
#PROTO="git@gitlab.com:"
if [[ -z "${CMD}" ]]; then
    export CMD="default"
fi

#STR=$(git remote -v|grep "https://")
#if [[ -n "${STR}" ]]; then
#    export PROTO="https://gitlab.com/"
#fi
PROTO="https://git.themanaworld.org/"

CLONECMD="git clone --origin upstream"
CLONE1="${CLONECMD} ${PROTO}${GROUP}"
CLONE2="${CLONECMD} ${PROTO}"

if [[ "${CMD}" == "all" || "${CMD}" == "default" ]]; then
    ${CLONE1}/clientdata.git client-data
    ${CLONE1}/hercules.git server-code
    ${CLONE1}/serverdata.git server-data
    ${CLONE1}/tools.git tools
    ${CLONE1}/evol-hercules.git server-code/src/evol
    ${CLONE1}/local.git server-local
    ${CLONE1}/docs.git docs
    ln -s server-code/src/evol server-plugin
elif [[ "${CMD}" == "server" ]]; then
    ${CLONE1}/hercules.git server-code
    ${CLONE1}/serverdata.git server-data
    ${CLONE1}/evol-hercules.git server-code/src/evol
    ${CLONE1}/tools.git tools
    ln -s server-code/src/evol server-plugin
elif [[ "${CMD}" == "client" ]]; then
    ${CLONE1}/clientdata.git client-data
    ${CLONE1}/tools.git tools
elif [[ "${CMD}" == "music" ]]; then
    ${CLONE1}/music.git music
elif [[ "${CMD}" == "local" ]]; then
    ${CLONE1}/local.git server-local
    ${CLONE1}/hercules.git server-code
    ${CLONE1}/serverdata.git server-data
    ${CLONE1}/evol-hercules.git server-code/src/evol
    ${CLONE1}/tools.git tools
    ln -s server-code/src/evol server-plugin
elif [[ "${CMD}" == "tools" ]]; then
    ${CLONE1}/tools.git tools
elif [[ "${CMD}" == "docs" ]]; then
    ${CLONE1}/docs.git docs
elif [[ "${CMD}" == "manaplus" ]]; then
    ${CLONE2}/mana/plus.git manaplus
elif [[ "${CMD}" == "media" ]]; then
    ${CLONE1}/media.git media
fi

if [[ "${CMD}" == "all" ]]; then
    ${CLONE1}/music.git music
    ${CLONE2}/mana/plus.git manaplus
    ${CLONE1}/media.git media
fi