diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-16 17:23:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-16 17:23:56 +0300 |
commit | 97317bd2a3452b1602b982e918357248953dd64d (patch) | |
tree | 324180cccac3b0984161d5e30843f4085303d7aa | |
parent | 9cc06a3d96690f1495a7bb2b363a98f1ec7f03e3 (diff) | |
download | all-97317bd2a3452b1602b982e918357248953dd64d.tar.gz all-97317bd2a3452b1602b982e918357248953dd64d.tar.bz2 all-97317bd2a3452b1602b982e918357248953dd64d.tar.xz all-97317bd2a3452b1602b982e918357248953dd64d.zip |
Add manaplus into supported tasks and repositories.
-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 |