From 3c25adfc1529af645acc9324b528f25e116e1747 Mon Sep 17 00:00:00 2001 From: Michael Green <84688932+michael-j-green@users.noreply.github.com> Date: Sat, 25 Nov 2023 15:53:46 +1100 Subject: [PATCH] Resolved collection build error (#188) --- gaseous-server/Classes/Collections.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gaseous-server/Classes/Collections.cs b/gaseous-server/Classes/Collections.cs index 51dfcf3..7b8d349 100644 --- a/gaseous-server/Classes/Collections.cs +++ b/gaseous-server/Classes/Collections.cs @@ -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); } } }