From 5dd0ea8b071eef0b64b3732d9c86f9018914b8b4 Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Tue, 24 Dec 2013 16:56:02 +0100 Subject: [PATCH] [New] added tutorialwebapp --- aheadStatus.sh | 1 + bootstrap.sh | 9 +++++++++ bootstrap_https.sh | 11 ++++++++++- pom.xml | 1 + push.sh | 1 + status.sh | 1 + update.sh | 1 + 7 files changed, 24 insertions(+), 1 deletion(-) diff --git a/aheadStatus.sh b/aheadStatus.sh index b87f61592..619dcc3b7 100755 --- a/aheadStatus.sh +++ b/aheadStatus.sh @@ -27,6 +27,7 @@ cd "li.strolch.persistence.api" ; logAheadCount ; cd .. cd "li.strolch.persistence.xml" ; logAheadCount ; cd .. cd "li.strolch.persistence.postgresql" ; logAheadCount ; cd .. cd "li.strolch.tutorialapp" ; logAheadCount ; cd .. +cd "li.strolch.tutorialwebapp" ; logAheadCount ; cd .. echo "Done." exit 0 \ No newline at end of file diff --git a/bootstrap.sh b/bootstrap.sh index c612674fb..2cef3c6da 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -98,5 +98,14 @@ else echo fi +if [ -d ../li.strolch.tutorialwebapp ] ; then + echo "Project li.strolch.tutorialwebapp already cloned." +else + if ! git clone git@github.com:eitch/li.strolch.tutorialwebapp.git ../li.strolch.tutorialwebapp ;then + exit 1 + fi + echo +fi + echo "Done." exit 0 \ No newline at end of file diff --git a/bootstrap_https.sh b/bootstrap_https.sh index 26db9eaa4..c2472fab5 100755 --- a/bootstrap_https.sh +++ b/bootstrap_https.sh @@ -92,7 +92,16 @@ fi if [ -d ../li.strolch.tutorialapp ] ; then echo "Project li.strolch.tutorialapp already cloned." else - if ! git clone https://github.com/eitch/li.strolch.tutorialapp.git ../li.strolch.tutorialapp.xml ;then + if ! git clone https://github.com/eitch/li.strolch.tutorialapp.git ../li.strolch.tutorialapp ;then + exit 1 + fi + echo +fi + +if [ -d ../li.strolch.tutorialwebapp ] ; then + echo "Project li.strolch.tutorialwebapp already cloned." +else + if ! git clone https://github.com/eitch/li.strolch.tutorialwebapp.git ../li.strolch.tutorialwebapp ;then exit 1 fi echo diff --git a/pom.xml b/pom.xml index 42c1b9d8b..244287217 100644 --- a/pom.xml +++ b/pom.xml @@ -25,5 +25,6 @@ ../li.strolch.runtime ../li.strolch.service ../li.strolch.tutorialapp + ../li.strolch.tutorialwebapp diff --git a/push.sh b/push.sh index 5d3840385..42e158dc8 100755 --- a/push.sh +++ b/push.sh @@ -16,6 +16,7 @@ echo "Pushing li.strolch.persistence.api..." ; cd li.strolch.persistence.api ; g echo "Pushing li.strolch.persistence.xml..." ; cd li.strolch.persistence.xml ; git push ; cd .. ; echo echo "Pushing li.strolch.persistence.postgresql..." ; cd li.strolch.persistence.postgresql ; git push ; cd .. ; echo echo "Pushing li.strolch.tutorialapp..." ; cd li.strolch.tutorialapp ; git push ; cd .. ; echo +echo "Pushing li.strolch.tutorialwebapp..." ; cd li.strolch.tutorialwebapp ; git push ; cd .. ; echo echo "Done." exit 0 \ No newline at end of file diff --git a/status.sh b/status.sh index d7595b448..7bae5a821 100755 --- a/status.sh +++ b/status.sh @@ -16,6 +16,7 @@ echo "Showing status of li.strolch.persistence.api..." ; cd li.strolch.persisten echo "Showing status of li.strolch.persistence.xml..." ; cd li.strolch.persistence.xml ; git status -s ; cd .. ; echo echo "Showing status of li.strolch.persistence.postgresql..." ; cd li.strolch.persistence.postgresql ; git status -s ; cd .. ; echo echo "Showing status of li.strolch.tutorialapp..." ; cd li.strolch.tutorialapp ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.tutorialwebapp..." ; cd li.strolch.tutoriwebalapp ; git status -s ; cd .. ; echo echo "Done." exit 0 diff --git a/update.sh b/update.sh index 138c1323f..2190c89e2 100755 --- a/update.sh +++ b/update.sh @@ -16,6 +16,7 @@ echo "Updating li.strolch.persistence.api..." ; cd li.strolch.persistence.api ; echo "Updating li.strolch.persistence.xml..." ; cd li.strolch.persistence.xml ; git pull ; cd .. ; echo echo "Updating li.strolch.persistence.postgresql..." ; cd li.strolch.persistence.postgresql ; git pull ; cd .. ; echo echo "Updating li.strolch.tutorialapp..." ; cd li.strolch.tutorialapp ; git pull ; cd .. ; echo +echo "Updating li.strolch.tutorialwebapp..." ; cd li.strolch.tutorialwebapp ; git pull ; cd .. ; echo echo "Done." exit 0 \ No newline at end of file