Skip to content

Commit

Permalink
Don't run install_scripts.sh in dev.eessi.io
Browse files Browse the repository at this point in the history
  • Loading branch information
Neves-P authored Oct 2, 2024
1 parent 0fad00c commit 4f8f4fb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion EESSI-install-software.sh
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,11 @@ pr_diff=$(ls [0-9]*.diff | head -1)
# install any additional required scripts
# order is important: these are needed to install a full CUDA SDK in host_injections
# for now, this just reinstalls all scripts. Note the most elegant, but works
${TOPDIR}/install_scripts.sh --prefix ${EESSI_PREFIX}

# Only run install_scripts.sh if not dev.eessi.io for security
if [[ "${EESSI_CVMFS_REPO}" != /cvmfs/dev.eessi.io ]]; then
${TOPDIR}/install_scripts.sh --prefix ${EESSI_PREFIX}
fi

# Install full CUDA SDK in host_injections
# Hardcode this for now, see if it works
Expand Down

0 comments on commit 4f8f4fb

Please sign in to comment.