mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
11 lines
200 B
Bash
Executable File
11 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in {1..5}
|
|
do
|
|
MAPFILE="polaris-$i.dmm"
|
|
|
|
git show HEAD:maps/$MAPFILE > tmp.dmm
|
|
java -jar MapPatcher.jar -clean tmp.dmm '../../maps/'$MAPFILE '../../maps/'$MAPFILE
|
|
rm tmp.dmm
|
|
done
|