Skip to content

Commit

Permalink
Merge pull request #814 from TopRichard/eessi-2023.06-fix-clean-up-di…
Browse files Browse the repository at this point in the history
…r-install_cuda_and_libraries.sh

clean `${tmpdir}` after iterations in `install_cuda_and_libraries.sh`
  • Loading branch information
trz42 authored Nov 18, 2024
2 parents 777dbe0 + 66c36c8 commit 64545d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/gpu_support/nvidia/install_cuda_and_libraries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ for EASYSTACK_FILE in ${TOPDIR}/easystacks/eessi-*CUDA*.yml; do
echo_green "all installations at ${EESSI_SITE_SOFTWARE_PATH}/software/... succeeded!"
fi

# clean up tmpdir
rm -rf "${tmpdir}"
# clean up tmpdir content
rm -rf "${tmpdir}"/*

# Restore MODULEPATH for next loop iteration
MODULEPATH=${SAVE_MODULEPATH}
Expand Down

0 comments on commit 64545d2

Please sign in to comment.