mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
5 lines
109 B
Bash
Executable File
5 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
for f in ../../maps/southern_cross/*.dmm;
|
|
do java -jar MapPatcher.jar -clean $f.backup $f $f;
|
|
done
|