Changeset 17480 for issm/trunk-jpl/src/m/os/issmscpout.py
- Timestamp:
- 03/19/14 18:29:13 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/os/issmscpout.py
r17126 r17480 2 2 import subprocess 3 3 import os 4 from MatlabFuncs import * 4 import MatlabFuncs as m 5 5 6 6 def issmscpout(host,path,login,port,packages): … … 16 16 #if hostname and host are the same, do a simple copy 17 17 18 if strcmpi(host,hostname):18 if m.strcmpi(host,hostname): 19 19 for package in packages: 20 20 here=os.getcwd() … … 27 27 os.chdir(here) 28 28 else: 29 if ispc():29 if m.ispc(): 30 30 #use the putty project pscp.exe: it should be in the path. 31 31
Note:
See TracChangeset
for help on using the changeset viewer.