summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2011-12-03 15:57:40 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2011-12-03 15:57:40 +0100
commitbbc82eba9905e1d831566f6e5df9d5dc82e33d7b (patch)
tree16cbda6f16fa421be9969a3ff6333a5e84e90f16
parent74d41ec85f4e9213e5c6c6c00457d4cac547f1c3 (diff)
downloadbuildscripts-bbc82eba9905e1d831566f6e5df9d5dc82e33d7b.tar.gz
buildscripts-bbc82eba9905e1d831566f6e5df9d5dc82e33d7b.tar.bz2
buildscripts-bbc82eba9905e1d831566f6e5df9d5dc82e33d7b.zip
fix use of ~ for home path
-rwxr-xr-xbin/itzks-gitcreate8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/itzks-gitcreate b/bin/itzks-gitcreate
index 30a7b62..9b7b8f6 100755
--- a/bin/itzks-gitcreate
+++ b/bin/itzks-gitcreate
@@ -8,9 +8,9 @@ for pkg in "$@"; do
ssh -litzks code.it-zukunft-schule.de "cd ~/git && ./setup-repository $subdir/$pkg '$pkg upstream project'"
ssh -litzks code.it-zukunft-schule.de "cd ~/git && ./update-repository-posixacls $subdir/$pkg"
test -d "$pkg" && cd "$pkg"
- echo "$pkg: MASTER BRANCH" && git push ssh://itzks@code.it-zukunft-schule.de:32032~/git/$subdir/$pkg master
- git branch | grep upstream &>/dev/null && echo "$pkg: RELEASE BRANCH" && git push ssh://itzks@code.it-zukunft-schule.de:32032~/git/code.itzks.de/$subdir/$pkg upstream
- git branch | grep pristine-tar &>/dev/null && echo "$pkg: PRISTINE-TAR" && git push ssh://itzks@code.it-zukunft-schule.de:32032~/git/$subdir/$pkg pristine-tar
- echo "$pkg: PUSHING TAGS" && git push --tags ssh://itzks@code.it-zukunft-schule.de:32032~/git/$subdir/$pkg
+ echo "$pkg: MASTER BRANCH" && git push ssh://itzks@code.it-zukunft-schule.de:32032/~/git/$subdir/$pkg master
+ git branch | grep upstream &>/dev/null && echo "$pkg: RELEASE BRANCH" && git push ssh://itzks@code.it-zukunft-schule.de:32032/~/git/code.itzks.de/$subdir/$pkg upstream
+ git branch | grep pristine-tar &>/dev/null && echo "$pkg: PRISTINE-TAR" && git push ssh://itzks@code.it-zukunft-schule.de:32032/~/git/$subdir/$pkg pristine-tar
+ echo "$pkg: PUSHING TAGS" && git push --tags ssh://itzks@code.it-zukunft-schule.de:32032/~/git/$subdir/$pkg
cd ..
done