From 46ce5de87532981727de97d6e6bde0f4dc99fda2 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Wed, 20 Feb 2013 17:37:13 -0600 Subject: [PATCH] DepotDownloader: Include depot number in human readable manifest filename in case -dir is specified. --- DepotDownloader/ContentDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index b12bc2de..38f2f2af 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -976,7 +976,7 @@ namespace DepotDownloader Console.Write(String.Format("Downloading manifest for depot {0}...", depot.id)); - string txtManifest = Path.Combine(depot.installDir, "manifest.txt"); + string txtManifest = Path.Combine(depot.installDir, string.Format("manifest_{0}.txt", depot.id)); Steam2ChecksumData checksums = null; StringBuilder manifestBuilder = new StringBuilder(); string[] excludeList = null;