|
@@ -1,7 +1,8 @@
|
|
|
#!/bin/bash
|
|
|
# Deploy on local Apache2 Httpd instance
|
|
|
|
|
|
-from="`git rev-parse --show-toplevel`/web/"
|
|
|
+gitRoot=`git rev-parse --show-toplevel`
|
|
|
+from="$gitRoot/web/"
|
|
|
dest="/var/www/html/"
|
|
|
|
|
|
echo "A copy will be peformed from ..."
|
|
@@ -9,5 +10,10 @@ echo $from
|
|
|
echo " ... to ... "
|
|
|
echo $dest
|
|
|
|
|
|
+bash "$gitRoot/undeployed/scripts/deploy/up-date.sh"
|
|
|
+bash "$gitRoot/undeployed/scripts/deploy/up-version.sh"
|
|
|
+
|
|
|
rsync --delete --recursive --verbose $from $dest
|
|
|
|
|
|
+git checkout -- "$gitRoot/web/include/generated/date.txt"
|
|
|
+git checkout -- "$gitRoot/web/include/generated/version.txt"
|