Skip to content
Snippets Groups Projects
Commit 9e303915 authored by Eric Müller's avatar Eric Müller :mountain_bicyclist:
Browse files

chore(fetch): add more debug [DO-NOT-MERGE]

Change-Id: Id7eb402a16953c1bcd3cdc91e0f9259487be8abd
parent 1051f7d3
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,7 @@ for package in "${packages_to_spec[@]}"; do
( specfile=$(get_specfile_name "${package}");
(${MY_SPACK_CMD} spec --fresh -y "${package}" > "${specfile}")
) 2>"${tmp_err}" \
&& ( echo "concretized: ${package}." ) \
|| ( echo "CONCRETIZING FAILED" >> "${tmpfiles_concretize_err[0]}" );
) &
done
......@@ -148,6 +149,9 @@ if [ -n "${SPACK_ENVIRONMENT:-}" ]; then
) && echo "done." || (echo "FAILED."; exit 1)
fi
echo "elements of tmpfiles_concretize_err: ${tmpfiles_concretize_err[@]}" || true
grep -H . "${tmpfiles_concretize_err[@]}" || true
# verify that all concretizations were successful
if (( $(cat "${tmpfiles_concretize_err[@]}" | wc -l) > 0 )); then
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment