浏览代码

Add rsync from local worktree to local httpd

DricomDragon 5 年之前
父节点
当前提交
b81f00e77e
共有 1 个文件被更改,包括 12 次插入13 次删除
  1. 12 13
      undeployed/scripts/deploy-local-httpd.sh

+ 12 - 13
undeployed/scripts/deploy-local-httpd.sh

@@ -1,14 +1,13 @@
 #!/bin/bash
-echo "[post-receive] Beginning check and deploy script :"
-while read oldrev newrev ref
-do
-    if [[ $ref =~ .*/master$ ]];
-    then
-	echo "[post-receive] Master ref received. Deploying master branch to production..."
-        git --work-tree=/var/www/jovian --git-dir=/home/gituser/StaticJovian.git checkout master -f
-    else
-	echo "[post-receive] Ref $ref successfully received."
-	echo "[post-receive] Doing nothing: only the master branch may be deployed on this server."
-    fi
-done
-echo "[post-receive] End of script."
+# Deploy on local Apache2 Httpd instance
+
+from="`git rev-parse --show-toplevel`/web/"
+dest="/var/www/html/"
+
+echo "A copy will be peformed from ..."
+echo $from
+echo " ... to ... "
+echo $dest
+
+rsync --delete --recursive --verbose $from $dest
+