Skip to content

Commit

Permalink
fix: fix echo in function installDIRACX() where error occurs
Browse files Browse the repository at this point in the history
  • Loading branch information
martynia authored and fstagni committed Nov 6, 2024
1 parent 0b64038 commit cc00240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Jenkins/utilities.sh
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ function installDIRACX() {
if [[ -n "${DIRACX_CUSTOM_SOURCE_PREFIXES:-}" ]]; then
wheels=( $(find "${DIRACX_CUSTOM_SOURCE_PREFIXES}" -name "diracx_${wheel_name}-*.whl") )
if [[ ! ${#wheels[@]} -eq 1 ]]; then
echo "ERROR: Multiple wheels found for ${package_name} in ${dir}"
echo "ERROR: Multiple or no wheels found for ${wheel_name} in ${DIRACX_CUSTOM_SOURCE_PREFIXES}"
exit 1
fi
pip install "${wheels[0]}"
Expand Down

0 comments on commit cc00240

Please sign in to comment.