Skip to content

Commit 6447d8a

Browse files
CHG: Committing local changes from UB CCR
1 parent ebebeee commit 6447d8a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

jenkins/ub-ccr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ISSM_CONFIG='\
3030
#-------------------#
3131

3232
EXTERNALPACKAGES="
33-
petsc install-3.21-linux.sh
33+
petsc install-3.22-linux.sh
3434
curl install-7-linux.sh
3535
hdf5 install-1.sh
3636
netcdf install-4.sh

src/m/classes/clusters/ub_ccr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __init__(self, *args): # {{{
4444
self.modules = ['ccrsoft/2023.01', 'gcc/11.2.0', 'openmpi/4.1.1']
4545
self.srcpath = '/projects/grid/ghub/ISSM/repos/ISSM'
4646
self.codepath = '/projects/grid/ghub/ISSM/repos/ISSM/bin'
47-
self.executionpath = ''
47+
self.executionpath = '$HOME/ISSM/execution'
4848
self.interactive = 0
4949
self.bbftp = 0
5050
self.email = ''
@@ -252,6 +252,6 @@ def Download(self, dirname, filelist): # {{{
252252

253253
# NOTE: Replacement for issmscpin(self.name, self.login, self.port, directory, filelist)
254254
fileliststr = '{' + ','.join([str(x) for x in filelist]) + '}'
255-
downloadcommand = 'cp {} {}/.'.format(os.path.join(directory, fileliststr), os.getcwd())
255+
downloadcommand = 'cp {} {}'.format(os.path.join(directory, fileliststr), os.getcwd())
256256
subprocess.call(downloadcommand, shell=True)
257257
# }}}

0 commit comments

Comments
 (0)