Changeset 23722


Ignore:
Timestamp:
02/14/19 01:25:23 (6 years ago)
Author:
bdef
Message:

BUG: adding svn flag (stackoverflow 54598689 for details)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/os/issmscpin.py

    r23716 r23722  
    88        """
    99        ISSMSCPIN get packages from host, using scp on unix, and pscp on windows
    10  
     10
    1111           usage: issmscpin(host,packages,path)
    1212        """
     
    1515        hostname=gethostname()
    1616
    17         #first be sure packages are not in the current directory, this could conflict with pscp on windows. 
     17        #first be sure packages are not in the current directory, this could conflict with pscp on windows.
    1818        #remove warnings in case the files do not exist
    1919        for package in packages:
     
    3333
    3434        else:
    35 
    3635                if m.ispc():
    3736                        #use the putty project pscp.exe: it should be in the path.
    38                
    3937                        #get ISSM_DIR variable
    4038                        if 'ISSM_DIR_WIN' in os.environ:
     
    5452                else:
    5553                        #just use standard unix scp
    56                         #string to copy multiple files using scp: 
    57                         string='\{'+','.join([str(x) for x in packages])+'\}'
    58                        
     54                        #string to copy multiple files using scp:
     55                        string="'{"+','.join([str(x) for x in packages])+"}'"
     56
    5957                        if port:
    6058                                subprocess.call('scp -P %d %s@localhost:%s %s/. ' % (port,login,os.path.join(path,string),os.getcwd()),shell=True)
    6159                        else:
    62                                 subprocess.call('scp %s@%s:%s %s/.' % (login,host,os.path.join(path,string),os.getcwd()),shell=True)
    63                
     60                                subprocess.call('scp -T %s@%s:%s %s/.' % (login,host,os.path.join(path,string),os.getcwd()),shell=True)
    6461                        #check scp worked
    6562                        for package in packages:
    6663                                if not os.path.exists(os.path.join('.',package)):
    67                                         raise OSError("issmscpin error message: could not call scp on *nix system.")
    68 
     64                                        raise OSError("issmscpin error message: could not call scp on *nix system for file '{}'".format(package))
Note: See TracChangeset for help on using the changeset viewer.