瀏覽代碼

Copy from deploy local script with password prompt

DricomDragon 5 年之前
父節點
當前提交
5037d8351d
共有 1 個文件被更改,包括 19 次插入0 次删除
  1. 19 0
      undeployed/scripts/deploy-to-ovh.sh

+ 19 - 0
undeployed/scripts/deploy-to-ovh.sh

@@ -0,0 +1,19 @@
+#!/bin/bash
+# Deploy to www.jovian-hersemeule.eu
+
+gitRoot=`git rev-parse --show-toplevel`
+from="$gitRoot/web/"
+host='ftp.cluster021.hosting.ovh.net'
+port='21'
+
+bash "$gitRoot/undeployed/scripts/deploy/up-date.sh"
+bash "$gitRoot/undeployed/scripts/deploy/up-version.sh"
+
+read -s -p "[deploy] password for $host: " password
+echo
+
+# ftp operation
+echo $password
+
+git checkout -- "$gitRoot/web/include/generated/date.txt"
+git checkout -- "$gitRoot/web/include/generated/version.txt"