diff options
author | Mihai Moldovan <ionic@ionic.de> | 2015-02-24 01:21:54 +0100 |
---|---|---|
committer | Mihai Moldovan <ionic@ionic.de> | 2015-02-24 01:21:54 +0100 |
commit | 29d243ad865c7e2ac47cadc086b92b9ff70e2841 (patch) | |
tree | bda98ba0782e1ac83c529b28881808d8b80ae714 /bin/gitcreate | |
parent | 6c5e73d9bc72381d873522636ecfc6eb3b04915c (diff) | |
download | buildscripts-29d243ad865c7e2ac47cadc086b92b9ff70e2841.tar.gz buildscripts-29d243ad865c7e2ac47cadc086b92b9ff70e2841.tar.bz2 buildscripts-29d243ad865c7e2ac47cadc086b92b9ff70e2841.zip |
[TESTCOMMIT] bin/gitcreate: remove trainling whitespace.
Diffstat (limited to 'bin/gitcreate')
-rwxr-xr-x | bin/gitcreate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gitcreate b/bin/gitcreate index 72eb308..c4b8230 100755 --- a/bin/gitcreate +++ b/bin/gitcreate @@ -15,7 +15,7 @@ for pkg in "$@"; do ssh -l$GIT_USER $GIT_HOSTNAME "cd ~/git && ./setup-repository ${subdir}${pkg} '$pkg upstream project'" ssh -l$GIT_USER $GIT_HOSTNAME "cd ~/git && ./update-repository-posixacls ${subdir}${pkg}" test -d "$pkg" && cd "$pkg" - echo "$pkg: MASTER BRANCH" && git push ssh://$GIT_USER@$GIT_HOSTNAME:$GIT_SSH_PORT/~/git/${subdir}${pkg} master + echo "$pkg: MASTER BRANCH" && git push ssh://$GIT_USER@$GIT_HOSTNAME:$GIT_SSH_PORT/~/git/${subdir}${pkg} master git branch | grep upstream &>/dev/null && echo "$pkg: RELEASE BRANCH" && git push ssh://$GIT_USER@$GIT_HOSTNAME:$GIT_SSH_PORT/~/git/${subdir}${pkg} upstream git branch | grep pristine-tar &>/dev/null && echo "$pkg: PRISTINE-TAR" && git push ssh://$GIT_USER@$GIT_HOSTNAME:$GIT_SSH_PORT/~/git/${subdir}${pkg} pristine-tar echo "$pkg: PUSHING TAGS" && git push --tags ssh://$GIT_USER@$GIT_HOSTNAME:$GIT_SSH_PORT/~/git/${subdir}${pkg} |