Resolved collection build error (#188)

This commit is contained in:
Michael Green
2023-11-25 15:53:46 +11:00
committed by GitHub
parent 5d0222397f
commit 3c25adfc15

View File

@@ -415,7 +415,7 @@ namespace gaseous_server.Classes
if (File.Exists(biosItem.biosPath))
{
Logging.Log(Logging.LogType.Information, "Collections", "Copying BIOS file: " + biosItem.filename);
File.Copy(biosItem.biosPath, Path.Combine(ZipBiosPath, biosItem.filename));
File.Copy(biosItem.biosPath, Path.Combine(ZipBiosPath, biosItem.filename), true);
}
}
}