[haiku-commits] haiku: hrev46467 - build/scripts

  • From: mattmadia@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 1 Dec 2013 13:17:58 +0100 (CET)

hrev46467 adds 1 changeset to branch 'master'
old head: 592be1fc7a36730bd6bb888649e02e508e1e79d8
new head: 9f1425e2f49a08243340c465c1eab9cb72cf5ba2
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=9f1425e+%5E592be1f

----------------------------------------------------------------------------

9f1425e: Use rsync instead of scp for uploading hakiu repository packages.

                                        [ Matt Madia <mattmadia@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev46467
Commit:      9f1425e2f49a08243340c465c1eab9cb72cf5ba2
URL:         http://cgit.haiku-os.org/haiku/commit/?id=9f1425e
Author:      Matt Madia <mattmadia@xxxxxxxxx>
Date:        Sun Dec  1 12:16:23 2013 UTC

----------------------------------------------------------------------------

1 file changed, 1 insertion(+), 1 deletion(-)
build/scripts/upload_haiku_repository | 2 +-

----------------------------------------------------------------------------

diff --git a/build/scripts/upload_haiku_repository 
b/build/scripts/upload_haiku_repository
index 97bceb3..727a6a3 100755
--- a/build/scripts/upload_haiku_repository
+++ b/build/scripts/upload_haiku_repository
@@ -23,7 +23,7 @@ version=${fileName#*-}
 version=${version%%-*}
 
 # upload the repo
-scp -r "$repositoryDir/*" 
"$sshUserName@$sshServer:$sshDestPath/$arch/$version/"
+rsync -rutlv -e ssh "$repositoryDir/" 
"$sshUserName@$sshServer:$sshDestPath/$arch/$version/"
 ssh "$sshUserName@$sshServer" "chmod -R 755 $sshDestPath/$arch/$version"
 sshSymlinkCommand="ln -sfT $version $sshDestPath/$arch/current"
 ssh "$sshUserName@$sshServer" "$sshSymlinkCommand"


Other related posts:

  • » [haiku-commits] haiku: hrev46467 - build/scripts - mattmadia