CI error.
This commit is contained in:
parent
2b6d95b3b3
commit
7b1000e1cb
|
@ -202,7 +202,9 @@ std::shared_ptr<TextureData> TextureBuilder::simple(int rawTexIndex, const std::
|
|||
image = new ImageData(relativeFilename, *bufferView, mimeType);
|
||||
}
|
||||
|
||||
} else if (!relativeFilename.empty()) {
|
||||
} else if (!relativeFilename.empty()) {
|
||||
std::string outputPath = outputFolder + "/" + relativeFilename;
|
||||
auto dstAbs = FileUtils::GetAbsolutePath(outputPath);
|
||||
image = new ImageData(relativeFilename, relativeFilename);
|
||||
auto srcAbs = FileUtils::GetAbsolutePath(rawTexture.fileLocation);
|
||||
if (!FileUtils::FileExists(outputPath) && srcAbs != dstAbs) {
|
||||
|
|
Loading…
Reference in New Issue