Skip to content

Commit 21acddd

Browse files
committed
fix: prevent rename of output for textures
1 parent fefe138 commit 21acddd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/openmvs/openmvs_impl.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ func (s OpenMVSServiceImpl) RunTextureMesh() {
8484
}
8585
s.Utils.CopyFile(
8686
fmt.Sprintf("%s/scene_dense_mesh_refine_texture.mtl", s.Config.BuildDir),
87-
fmt.Sprintf("%s/final.mtl", s.Config.OutputDir),
87+
fmt.Sprintf("%s/scene_dense_mesh_refine_texture.mtl", s.Config.OutputDir),
8888
)
8989

9090
s.Utils.CopyFile(
9191
fmt.Sprintf("%s/scene_dense_mesh_refine_texture.obj", s.Config.BuildDir),
92-
fmt.Sprintf("%s/final.obj", s.Config.OutputDir),
92+
fmt.Sprintf("%s/scene_dense_mesh_refine_texture.obj", s.Config.OutputDir),
9393
)
9494
}

0 commit comments

Comments
 (0)