Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/check_requirements_changes.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Check if requirements files have changed in the last commit
if git diff --name-only HEAD~1 | grep -E 'pyproject.toml'; then
if git diff --name-only HEAD | grep -E 'pyproject.toml'; then
echo "Requirements files may have changed. Running compatibility checks..."
echo 'export REQUIREMENTS_CHANGED="true"' >> $BASH_ENV
else
Expand Down