Skip to content

Commit d4c8059

Browse files
Implement case control in committee script
1 parent 33e77cd commit d4c8059

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

_scripts/committee.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ if [[ -z "$committee" ]]; then
1616
exit 1
1717
fi
1818

19+
for file in $committee/full/*; do
20+
if [[ $file =~ [A-Z] ]]; then
21+
mv $file `echo $file | tr '[:upper:]' '[:lower:]'`
22+
fi
23+
done
24+
1925
resolution="250x250"
2026

2127
mkdir -p $committee/mini/

0 commit comments

Comments
 (0)