mirror of
https://github.com/brian8544/turtle-wow.git
synced 2025-01-03 21:34:35 +00:00
7 lines
111 B
Bash
7 lines
111 B
Bash
|
cd ./patches
|
||
|
for filename in *.sql; do
|
||
|
if [ ! -f ${filename::-4}.zip ]; then
|
||
|
gzip "${filename}";
|
||
|
fi
|
||
|
done
|