From 0b21b4734cf5307e96c945a36b34ae5af2f6c0fe Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Wed, 22 Jan 2014 11:45:16 -0500 Subject: [PATCH] Improve error message when specified depot is not available for current platform. --- DepotDownloader/ContentDownloader.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 5bfc5bc5..5f3558de 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -369,7 +369,12 @@ namespace DepotDownloader } else if (depotIDs.Count == 0) { - Console.WriteLine("Depot {0} not listed for app {1}", depotId, appId); + Console.Write("Depot {0} not listed for app {1}", depotId, appId); + if (!Config.DownloadAllPlatforms) + { + Console.Write(" or not available on this platform"); + } + Console.WriteLine(); return; }