mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
Fixes airless turf in Fore Starboard Solar Control causing minor atmos alert at roundstart Fixes clean_map_git.sh being set non-executable and using non-sh-compatible features with #!/bin/sh
11 lines
199 B
Bash
Executable File
11 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in {1..6}
|
|
do
|
|
MAPFILE="exodus-$i.dmm"
|
|
|
|
git show HEAD:maps/$MAPFILE > tmp.dmm
|
|
java -jar MapPatcher.jar -clean tmp.dmm '../../maps/'$MAPFILE '../../maps/'$MAPFILE
|
|
rm tmp.dmm
|
|
done
|