mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Fix a path handling issue of ProjectConverter3To4
This commit is contained in:
parent
9094262a6b
commit
1fad0522d0
@ -1898,14 +1898,14 @@ Vector<String> ProjectConverter3To4::check_for_files() {
|
||||
continue;
|
||||
}
|
||||
if (dir.current_is_dir()) {
|
||||
directories_to_check.append(current_dir + file_name + "/");
|
||||
directories_to_check.append(current_dir.plus_file(file_name) + "/");
|
||||
} else {
|
||||
bool proper_extension = false;
|
||||
if (file_name.ends_with(".gd") || file_name.ends_with(".shader") || file_name.ends_with(".tscn") || file_name.ends_with(".tres") || file_name.ends_with(".godot") || file_name.ends_with(".cs") || file_name.ends_with(".csproj"))
|
||||
proper_extension = true;
|
||||
|
||||
if (proper_extension) {
|
||||
collected_files.append(current_dir + file_name);
|
||||
collected_files.append(current_dir.plus_file(file_name));
|
||||
}
|
||||
}
|
||||
file_name = dir.get_next();
|
||||
|
Loading…
Reference in New Issue
Block a user