Files
Paradise/tools/mapmerge/prepare_map.bat
2015-05-22 16:29:12 -04:00

13 lines
289 B
Batchfile

@echo off
cd ../../_maps/map_files/
for /R %%f in (*.dmm) do copy "%%f" "%%f.backup"
cls
echo All dmm files in map_files directories have been backed up
echo Now you can make your changes...
echo ---
echo Remember to run clean_map.bat just before you commit your changes!
echo ---
pause