18 lines
413 B
Bash
Executable File
18 lines
413 B
Bash
Executable File
#!/bin/bash
|
|
pip install black==22.3.0
|
|
arrVar=()
|
|
echo we ignore non-*.py files
|
|
excluded_files=(
|
|
)
|
|
for changed_file in $CHANGED_FILES; do
|
|
if [[ ${changed_file} == *.py ]] && ! [[ " ${excluded_files[@]} " =~ " ${changed_file} " ]]; then
|
|
echo checking ${changed_file}
|
|
arrVar+=(${changed_file})
|
|
fi
|
|
done
|
|
if (( ${#arrVar[@]} )); then
|
|
black -S --check "${arrVar[@]}"
|
|
fi
|
|
echo "no files left to check"
|
|
exit 0
|