Răsfoiți Sursa

more bug fixes

[SVN r23689]
Aleksey Gurtovoy 22 ani în urmă
părinte
comite
c1f011a1bb
1 a modificat fișierele cu 3 adăugiri și 3 ștergeri
  1. 3 3
      tools/regression/xsl_reports/utils/sourceforge.py

+ 3 - 3
tools/regression/xsl_reports/utils/sourceforge.py

@@ -3,14 +3,14 @@ import utils.checked_system
 import os
 import sys
 
-site_dir = '/home/groups/b/bo/boost/htdocs'
+site_dir = '/home/groups/b/bo/boost/htdocs/'
 
 def download( source, destination, user ):
     if sys.platform == 'win32':
         destination = os.popen( 'cygpath "%s"' % destination ).read().splitlines()[0]
 
     utils.checked_system( [ 
-          'rsync -v -r -z --progress %(user)s@shell.sourceforge.net:%(site_dir)s/%(source)s %(dest)s'
+          'rsync -v -r -z --progress %(user)s@shell.sourceforge.net:%(site_dir)s%(source)s %(dest)s'
                 % { 'user': user, 'site_dir': site_dir, 'source': source, 'dest': destination }
         ] )
 
@@ -20,7 +20,7 @@ def upload( source, destination, user ):
         source = os.popen( 'cygpath "%s"' % source ).read().splitlines()[0]
         
     utils.checked_system( [ 
-          'rsync -v -r -z --progress %(source)s %(user)s@shell.sourceforge.net:%(site_dir)s/%(dest)s'
+          'rsync -v -r -z --progress %(source)s %(user)s@shell.sourceforge.net:%(site_dir)s%(dest)s'
                 % { 'user': user, 'site_dir': site_dir, 'source': source, 'dest': destination }
         ] )
 

粤ICP备19079148号