Add error "Cannot read file"

This commit is contained in:
Raimund58
2023-01-04 16:24:15 +00:00
committed by harlekin
parent 6fd91f1d8d
commit 6b5c281a7f
2 changed files with 10 additions and 0 deletions

View File

@@ -948,6 +948,13 @@ import java.util.regex.Pattern;
//17-03 07:38:47 (error) Job::render no picture file found (after finished render (filename_without_extension 116372253_0007)
return Error.Type.CURRENTLY_HEADLESS;
}
else if (line.contains("Error: Cannot read file")) {
//14-10 11:03:21 (debug) Blender 3.1.0 (hash c77597cd0e15 built 2022-03-09 00:44:13)
//14-10 11:03:21 (debug) Error: Cannot read file 'C:\SheepIT\sheepit\ef925644a319c5ad604ebc077769bcb8\Passeio Virtual FINAL.blend': No such file or directory
//14-10 11:03:21 (debug) Blender quit
return Error.Type.CANNOT_READ_FILE;
}
return Type.OK;
}