mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-16 20:52:33 +00:00
14 lines
364 B
Bash
14 lines
364 B
Bash
#!/bin/bash
|
|
|
|
#If you hit github's rate limit, add a 3rd parameter here that is a github personal access token
|
|
./CreditsTool tgstation tgstation
|
|
|
|
rm ../../icons/credits.dmi
|
|
|
|
for filename in credit_pngs/*.png; do
|
|
realname=$(basename "$filename")
|
|
java -jar ../dmitool/dmitool.jar import ../../icons/credits.dmi "${realname%.*}" "$filename"
|
|
done
|
|
|
|
rm -rf credit_pngs
|