Fix handling of paths longer than 260 chars on Windows during export (#847)

This commit is contained in:
Jackson Kruger
2023-10-30 20:27:30 -05:00
committed by GitHub
parent bd18dbdbe8
commit f5c7f90d19
2 changed files with 8 additions and 2 deletions

View File

@@ -34,6 +34,9 @@ pub enum ErrorKind {
#[error("I/O error: {0}")]
IOError(#[from] util::io::IOError),
#[error("I/O (std) error: {0}")]
StdIOError(#[from] std::io::Error),
#[error("Error launching Minecraft: {0}")]
LauncherError(String),