Skip to content

Commit 4fe479f

Browse files
committed
keep files in sorted order
1 parent a137cf1 commit 4fe479f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/run_py_files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fi
1919

2020
# Find and execute all Python files
2121
echo "Searching for Python files in $TARGET_DIR..."
22-
PYTHON_FILES=$(find "$TARGET_DIR" -type f -name "*.py")
22+
PYTHON_FILES=$(find "$TARGET_DIR" -type f -name "*.py" | sort)
2323

2424
if [ -z "$PYTHON_FILES" ]; then
2525
echo "No Python files found in $TARGET_DIR"

0 commit comments

Comments
 (0)