diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | README | 13 | ||||
-rwxr-xr-x | git.sh | 1 | ||||
-rwxr-xr-x | init.sh | 3 | ||||
-rwxr-xr-x | pull.sh | 1 | ||||
-rwxr-xr-x | push.sh | 1 | ||||
-rwxr-xr-x | status.sh | 1 |
7 files changed, 15 insertions, 6 deletions
@@ -6,3 +6,4 @@ server-data server-plugin server-local tools +manaplus @@ -16,12 +16,13 @@ Example: Usage: ./init.sh task Allowed tasks: - all - all known repositories. - server - repositories for run server. - client - repositories for client data development. - music - repositories with music. - local - repositories for running local server. - tools - repositories with tools. + all - all known repositories. + server - repositories for run server. + client - repositories for client data development. + music - repositories with music. + local - repositories for running local server. + tools - repositories with tools. + manaplus - repository with manaplus sources. This command allow any combinations with different tasks. Example: ./init.sh local @@ -21,3 +21,4 @@ status tools tools status server-code/src/evol evol-hercules status music music status art art +status manaplus manaplus @@ -31,8 +31,11 @@ elif [[ "${CMD}" == "local" ]]; then ln -s server-code/src/evol server-plugin elif [[ "${CMD}" == "tools" ]]; then git clone git@gitorious.org:evol/evol-tools.git tools +elif [[ "${CMD}" == "manaplus" ]]; then + git clone git@gitorious.org: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 fi @@ -27,3 +27,4 @@ status tools tools status server-code/src/evol evol-hercules status music music status art art +status manaplus manaplus @@ -23,3 +23,4 @@ status tools tools status server-code/src/evol evol-hercules status music music status art art +status manaplus manaplus @@ -32,3 +32,4 @@ status tools tools status server-code/src/evol evol-hercules status music music status art art +status manaplus manaplus |