You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
264 B
11 lines
264 B
1 month ago
|
#!/bin/bash
|
||
|
set -x
|
||
|
cp ../arpg_cli_proj/arpg/Assets/RawResources/MapConfig/Room/*.room cfg/sog/map/
|
||
|
cp ../arpg_cli_proj/arpg/Assets/RawResources/HexMapConfig/*.map cfg/sog/map/
|
||
|
cd cfg/sog/map/
|
||
|
for file in ./*.map
|
||
|
do
|
||
|
base=${file%.*}
|
||
|
mv $file ${base}.room
|
||
|
done
|