FMHYedit/.github/script.sh

8 lines
146 B
Bash
Raw Normal View History

2023-11-12 16:42:57 +00:00
python .github/replace.py
2024-01-26 17:07:56 +00:00
python .github/add-headers.py
2023-11-12 16:42:57 +00:00
for file in *; do
[[ -f "$file" ]] && mv "$file" "${file,,}" 2>/dev/null
done
exit 0