From 4d5b0486a20a307f40a1a4e816dbf783c8fd5aaa Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 30 Oct 2024 13:39:35 -0400 Subject: [PATCH] Fix build --- SabreTools.FileTypes/Archives/XZArchive.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SabreTools.FileTypes/Archives/XZArchive.cs b/SabreTools.FileTypes/Archives/XZArchive.cs index 6413a90a..c03b90e3 100644 --- a/SabreTools.FileTypes/Archives/XZArchive.cs +++ b/SabreTools.FileTypes/Archives/XZArchive.cs @@ -333,7 +333,7 @@ namespace SabreTools.FileTypes.Archives baseFile = GetInfo(inputStream, keepReadOpen: true); // Get the output file name - string outfile = Path.Combine(outDir, Utilities.GetDepotPath(baseFile.SHA1, Depth)!); + string outfile = Path.Combine(outDir, Core.Tools.Utilities.GetDepotPath(baseFile.SHA1, Depth)!); outfile = outfile.Replace(".gz", ".xz"); // Check to see if the folder needs to be created