summaryrefslogtreecommitdiffstats
path: root/server/export_target
diff options
context:
space:
mode:
authorSimon Rettberg2013-04-02 21:28:53 +0200
committersr2013-04-12 19:11:40 +0200
commit6258e8298239fb49e26de7de90e4b616db0523aa (patch)
tree6d0f0280f5ff7d9524644812a2764b5ff86663f0 /server/export_target
parentMake server -s actually sync from remote server using rsync. Currently suppor... (diff)
downloadtm-scripts-6258e8298239fb49e26de7de90e4b616db0523aa.tar.gz
tm-scripts-6258e8298239fb49e26de7de90e4b616db0523aa.tar.xz
tm-scripts-6258e8298239fb49e26de7de90e4b616db0523aa.zip
...
Diffstat (limited to 'server/export_target')
-rwxr-xr-xserver/export_target2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/export_target b/server/export_target
index 6ce5838c..fe8dda18 100755
--- a/server/export_target
+++ b/server/export_target
@@ -50,7 +50,7 @@ sync_remote() {
#TODO setup link to remote build directory, later this directory will be rsynced or exported to this server...
mkdir -p "${SERVER_BUILD_DIR}" || perror "Could not create directory for local copy of remote system ($SERVER_BUILD_DIR)"
- rsync -a -v -e "ssh -oStrictHostKeyChecking=no" "root@$REMOTE_IP:/export/build" "$SERVER_BUILD_DIR" || perror "rsync from 'root@$REMOTE_IP:/export/build' to '$SERVER_BUILD_DIR' failed."
+ rsync -a -v -e "ssh -oStrictHostKeyChecking=no" "root@$REMOTE_IP:/export/build/*" "$SERVER_BUILD_DIR" || perror "rsync from 'root@$REMOTE_IP:/export/build' to '$SERVER_BUILD_DIR' failed."
}
generate_stage32() {