Skip to content

Commit 77b395d

Browse files
authored
fix incorrect filenames
1 parent 5daf44e commit 77b395d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/amuse/community/mesa_r15140/download.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def get_fpx3():
103103
def get_lapack95():
104104
instance = GetCodeFromHttp()
105105
instance.url_template = 'http://www.astro.wisc.edu/~townsend/resource/download/sdk2/src/lapack95.tgz'
106-
instance.filename_template='lapack95.tar.gz'
106+
instance.filename_template='lapack95.tgz'
107107
instance.version = ''
108108
instance.zip = False
109109
instance.start()
@@ -122,7 +122,7 @@ def get_mesa():
122122
def get_hdf5():
123123
instance = GetCodeFromHttp()
124124
instance.url_template = "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.12/hdf5-{version}/src/hdf5-{version}.tar.bz2"
125-
instance.filename_template='hdf-{version}.tar.bz2'
125+
instance.filename_template='hdf5-{version}.tar.bz2'
126126
instance.version = '1.12.0'
127127
instance.zip = False
128128
instance.start()

0 commit comments

Comments
 (0)