Skip to content

Commit

Permalink
Add capabilities to support multiple requirements files
Browse files Browse the repository at this point in the history
  • Loading branch information
TGWolf committed Jun 24, 2024
1 parent 85e0379 commit adb91f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ function install_prerequisites()
fail "${CMD[*]}" "${errors}" true
exit "${EXIT_VALUE}"
fi
done < <(find . -name 'requirements.txt' -type f -not -path "./.git/*" | sed 's|^./||' | sort -Vf || true)
done < <(find . -name 'requirements*.txt' -type f -not -path "./.git/*" | sed 's|^./||' | sort -Vf || true)
fi
}

Expand Down

0 comments on commit adb91f0

Please sign in to comment.