remove unnecessary filesyste::

This commit is contained in:
2026-01-10 19:54:20 +03:00
parent 4923e49fe0
commit 622f15aea2
+3 -3
View File
@@ -61,9 +61,9 @@ int main(int argc, char *argv[])
if (parse_args(argc, argv, input_path, output_path, manifest_path) == 1) if (parse_args(argc, argv, input_path, output_path, manifest_path) == 1)
return 0; return 0;
input_path = filesystem::absolute(input_path); input_path = absolute(input_path);
output_path = filesystem::absolute(output_path); output_path = absolute(output_path);
manifest_path = filesystem::absolute(manifest_path); manifest_path = absolute(manifest_path);
if (check_pathes(input_path, output_path, manifest_path) == 1) if (check_pathes(input_path, output_path, manifest_path) == 1)
return 0; return 0;