summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-11-05 13:29:38 +0300
committerAndrei Karas <akaras@inbox.ru>2014-11-05 13:29:38 +0300
commit19364cae50676fa31e7b2d8fe875962be5b90708 (patch)
tree3cfe27e515d5cff919ae0831f620a4eb522cc601
parent534b5b072ef687a7b1c4886c6bb6d9c0f5288bdb (diff)
downloadevol-all-19364cae50676fa31e7b2d8fe875962be5b90708.tar.gz
evol-all-19364cae50676fa31e7b2d8fe875962be5b90708.tar.bz2
evol-all-19364cae50676fa31e7b2d8fe875962be5b90708.tar.xz
evol-all-19364cae50676fa31e7b2d8fe875962be5b90708.zip
add music repository.
It can be added if run: ./init.sh all
-rwxr-xr-xinit.sh4
-rwxr-xr-xpushall.sh8
-rwxr-xr-xstatus.sh8
3 files changed, 16 insertions, 4 deletions
diff --git a/init.sh b/init.sh
index 4fe518e..676facf 100755
--- a/init.sh
+++ b/init.sh
@@ -5,3 +5,7 @@ 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
+
+if [[ "$1" == "all" ]]; then
+ git clone git@gitorious.org:evol/evol-music.git music
+fi
diff --git a/pushall.sh b/pushall.sh
index 6c2f39d..002ba3d 100755
--- a/pushall.sh
+++ b/pushall.sh
@@ -1,10 +1,13 @@
#!/bin/bash
function status {
+ if [ ! -d "$1" ]; then
+ return
+ fi
DIR=`pwd`
- cd $1
+ cd "$1"
STR=`git status|grep "Your branch is ahead"`
- if [[ -n ${STR} ]]; then
+ if [[ -n "${STR}" ]]; then
echo "pusing $2"
git push
fi
@@ -17,3 +20,4 @@ status server-code server-code
status server-data server-data
status tools tools
status server-code/src/evol evol-hercules
+status music music
diff --git a/status.sh b/status.sh
index dcc5fad..5112177 100755
--- a/status.sh
+++ b/status.sh
@@ -1,11 +1,14 @@
#!/bin/bash
function status {
+ if [ ! -d "$1" ]; then
+ return
+ fi
DIR=`pwd`
- cd $1
+ cd "$1"
STR=`git diff --name-only`
STR2=`git status|grep "Your branch is ahead"`
- if [[ -n ${STR}${STR2} ]]; then
+ if [[ -n "${STR}${STR2}" ]]; then
echo -e "$2:"
if [[ -n ${STR} ]]; then
echo -e "\e[1;31m${STR}"
@@ -24,3 +27,4 @@ status server-code server-code
status server-data server-data
status tools tools
status server-code/src/evol evol-hercules
+status music music