We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b22b701 commit 5629986Copy full SHA for 5629986
util/nrl/batch_install.sh
@@ -569,10 +569,13 @@ for compiler in "${SPACK_STACK_BATCH_COMPILERS[@]}"; do
569
spack mirror create -a -d ${source_mirror_path}
570
fi
571
572
- # Update local cargo mirror if requested
+ # Update local cargo mirror if requested; this can be
573
+ # unreliable, therefore ignore errors and proceed ...
574
if [[ "${update_cargo_mirror}" == "true"* ]]; then
575
+ set +e
576
echo "Updating local cargo mirror ..."
577
./util/fetch_cargo_deps.py
578
+ set -e
579
580
581
# Install the environment with the correct flags
0 commit comments