summaryrefslogtreecommitdiffstats
path: root/ws_main.py
diff options
context:
space:
mode:
Diffstat (limited to 'ws_main.py')
-rw-r--r--ws_main.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/ws_main.py b/ws_main.py
index 5d9fd8cc..849e68fa 100644
--- a/ws_main.py
+++ b/ws_main.py
@@ -375,6 +375,11 @@ def publish_ext(bld):
os.system('rsync -avz -e "ssh -i %s" --rsync-path=/usr/bin/rsync %s %s@%s:%s/doc/' % (Env().get_trex_ex_web_key(),from_, Env().get_trex_ex_web_user(),Env().get_trex_ex_web_srv(),Env().get_trex_ex_web_path() ) )
+def publish_test(bld):
+ # copy all the files to our web server
+ remote_dir = "%s:%s" % ( Env().get_local_web_server(), Env().get_remote_release_path ()+'../test/')
+ os.system('rsync -av --rsh=ssh build/ %s' % (remote_dir))
+