Skip to content

Commit 0a054bf

Browse files
1 parent 6e55e8e commit 0a054bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

releases/vtk-install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ VTK_INSTALLED="$SHARE_PREFIX/vtk.installed"
1616

1717
if [[ ! -f $VTK_INSTALLED ]]; then
1818
# Install h5py (and its dependencies, most notably gcc and mpi4py)
19-
H5PY_INSTALL_SCRIPT_PATH=${H5PY_INSTALL_SCRIPT_PATH:-"https://github.com/fem-on-kaggle/fem-on-kaggle.github.io/raw/a96a04c/releases/h5py-install.sh"}
19+
H5PY_INSTALL_SCRIPT_PATH=${H5PY_INSTALL_SCRIPT_PATH:-"https://github.com/fem-on-kaggle/fem-on-kaggle.github.io/raw/904360c/releases/h5py-install.sh"}
2020
[[ $H5PY_INSTALL_SCRIPT_PATH == http* ]] && H5PY_INSTALL_SCRIPT_DOWNLOAD=${H5PY_INSTALL_SCRIPT_PATH} && H5PY_INSTALL_SCRIPT_PATH=/tmp/h5py-install.sh && [[ ! -f ${H5PY_INSTALL_SCRIPT_PATH} ]] && wget ${H5PY_INSTALL_SCRIPT_DOWNLOAD} -O ${H5PY_INSTALL_SCRIPT_PATH}
2121
source $H5PY_INSTALL_SCRIPT_PATH
2222

2323
# Download and uncompress library archive
24-
VTK_ARCHIVE_PATH=${VTK_ARCHIVE_PATH:-"https://github.com/fem-on-kaggle/fem-on-kaggle/releases/download/vtk-20250119-103709-e44dbfa/vtk-install.tar.gz"}
24+
VTK_ARCHIVE_PATH=${VTK_ARCHIVE_PATH:-"https://github.com/fem-on-kaggle/fem-on-kaggle/releases/download/vtk-20250201-025556-5194b3b/vtk-install.tar.gz"}
2525
[[ $VTK_ARCHIVE_PATH == http* ]] && VTK_ARCHIVE_DOWNLOAD=${VTK_ARCHIVE_PATH} && VTK_ARCHIVE_PATH=/tmp/vtk-install.tar.gz && wget ${VTK_ARCHIVE_DOWNLOAD} -O ${VTK_ARCHIVE_PATH}
2626
if [[ $VTK_ARCHIVE_PATH != skip ]]; then
2727
tar -xzf $VTK_ARCHIVE_PATH --strip-components=$INSTALL_PREFIX_DEPTH --directory=$INSTALL_PREFIX

0 commit comments

Comments
 (0)