"vscode:/vscode.git/clone" did not exist on "90a7c954962138e9e6f9c56ff892e4a435896990"
convert_examples.sh 322 Bytes
Newer Older
Arthur's avatar
Arthur committed
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

# Iterate over each file in the current directory
for file in examples/diff-conversion/diff_*; do
    # Check if it's a regular file
    if [ -f "$file" ]; then
        # Call the Python script with the file name as an argument
        python utils/diff_model_converter.py --files_to_parse "$file"
    fi
done