Change mv to cp for map file copying

This commit is contained in:
xuwei-fit2cloud
2026-05-28 10:18:27 +08:00
committed by GitHub
parent b11f5a1bee
commit 0082014d24

View File

@@ -136,7 +136,7 @@ function prepare_de_run_base() {
log_content "复制地图文件"
if [ -d ${DE_RUN_BASE}/data/map ] || [ -d ${DE_RUN_BASE}/mapFiles ]; then
mv ${DE_RUN_BASE}/mapFiles/* ${DE_RUN_BASE}/data/map/
cp -rf ${DE_RUN_BASE}/mapFiles/* ${DE_RUN_BASE}/data/map/
fi
}