فهرست منبع

Updated Makefile to use rsync instead of scp.

Taddeus Kroes 13 سال پیش
والد
کامیت
56fc98a2fd
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -7,9 +7,9 @@ docs:
 	phpdoc
 
 upload: docs
-	scp -r build/docs mv:tk.nl/docs/webbasics
+	rsync -r --delete --force build/docs mv:tk.nl/docs/webbasics
 
 clean:
 	rm -rf build
 
-.PHONY: test docs clean upload
+.PHONY: test docs upload clean