소스 검색

Make the dump happen later

In case of cancellation, modifications are not left unchanged.
DricomDragon 5 년 전
부모
커밋
4660d9064a
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 3
      undeployed/scripts/deploy-to-ovh.sh

+ 4 - 3
undeployed/scripts/deploy-to-ovh.sh

@@ -10,9 +10,6 @@ user='jovianhedk'
 port='21'
 dest='www'
 
-bash "$gitRoot/undeployed/scripts/deploy/up-date.sh"
-bash "$gitRoot/undeployed/scripts/deploy/up-version.sh"
-
 cd $origin
 files=`echo *.php include/*.php projets/*.php include/css/*.css include/css/custom/*.css include/js/*.js include/images/*.png include/images/*.jpg include/generated/*.txt`
 echo 'Files to be sent :'
@@ -22,6 +19,10 @@ echo "FTP to $host"
 read -s -p "[deploy] password for $user: " password
 echo
 
+# Dump varying files
+bash "$gitRoot/undeployed/scripts/deploy/up-date.sh"
+bash "$gitRoot/undeployed/scripts/deploy/up-version.sh"
+
 # ftp operation
 ftp -vin $host $port<<EOT
 user $user $password