diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-12 21:33:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-12 21:37:02 +0300 |
commit | c9ed689293836ba6c4da5b3b622d840025da8ffc (patch) | |
tree | 699befb8c93d28bf6dee655d639a1e254457d8e4 | |
parent | 30bd5554311b3db9c2c78ac850ca51c8dd7f3d45 (diff) | |
download | all-c9ed689293836ba6c4da5b3b622d840025da8ffc.tar.gz all-c9ed689293836ba6c4da5b3b622d840025da8ffc.tar.bz2 all-c9ed689293836ba6c4da5b3b622d840025da8ffc.tar.xz all-c9ed689293836ba6c4da5b3b622d840025da8ffc.zip |
In init.sh replace bin action to local.
Also add server-local to all scripts.
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | git.sh | 1 | ||||
-rwxr-xr-x | init.sh | 9 | ||||
-rwxr-xr-x | pull.sh | 1 | ||||
-rwxr-xr-x | push.sh | 1 | ||||
-rwxr-xr-x | status.sh | 1 |
6 files changed, 11 insertions, 3 deletions
@@ -4,4 +4,5 @@ music server-code server-data server-plugin +server-local tools @@ -16,6 +16,7 @@ status . evol-all status client-data client-data status server-code server-code status server-data server-data +status server-local server-local status tools tools status server-code/src/evol evol-hercules status music music @@ -11,6 +11,7 @@ if [[ "${CMD}" == "all" || "${CMD}" == "default" ]]; then 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 ln -s server-code/src/evol server-plugin elif [[ "${CMD}" == "server" ]]; then git clone git@gitorious.org:evol/hercules.git server-code @@ -22,9 +23,11 @@ elif [[ "${CMD}" == "client" ]]; then git clone git@gitorious.org:evol/evol-tools.git tools elif [[ "${CMD}" == "music" ]]; then git clone git@gitorious.org:evol/evol-music.git music -elif [[ "${CMD}" == "bin" ]]; then - cd server-bin - ./install.sh +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 fi if [[ "${CMD}" == "all" ]]; then @@ -22,6 +22,7 @@ status . evol-all status client-data client-data status server-code server-code status server-data server-data +status server-local server-local status tools tools status server-code/src/evol evol-hercules status music music @@ -18,6 +18,7 @@ status . evol-all status client-data client-data status server-code server-code status server-data server-data +status server-local server-local status tools tools status server-code/src/evol evol-hercules status music music @@ -27,6 +27,7 @@ status . evol-all status client-data client-data status server-code server-code status server-data server-data +status server-local server-local status tools tools status server-code/src/evol evol-hercules status music music |