skip import test file

This commit is contained in:
Richard Holland
2025-05-01 14:58:14 +10:00
parent 120ecc19c2
commit b9ac76f11f

View File

@@ -8,6 +8,11 @@ files_changed=$(git diff --name-only --relative HEAD~1 HEAD)
# Loop through each file and search for the patterns # Loop through each file and search for the patterns
for file in $files_changed; do for file in $files_changed; do
# Skip if the file is Import_test.cpp (exact filename match regardless of path)
if [[ "$(basename "$file")" == "Import_test.cpp" ]]; then
continue
fi
# Construct the absolute path # Construct the absolute path
absolute_path="$repo_root/$file" absolute_path="$repo_root/$file"