From c14593f8b6d27febc4f47995144c563fed6dad4d Mon Sep 17 00:00:00 2001 From: Chrison Simtian Date: Thu, 25 Jun 2026 12:25:56 +1200 Subject: [PATCH] Rebrand the global-tool startup banner from "NUKE" to "Fallout" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The PrintInfo() banner still printed "NUKE Global Tool 🌐" at startup — a leftover the command/package rebrand (#66, #371) missed. Update it to "Fallout Global Tool 🌐". Co-Authored-By: Claude Opus 4.8 (1M context) --- src/Fallout.Cli/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fallout.Cli/Program.cs b/src/Fallout.Cli/Program.cs index 1702ab81a..828b31870 100644 --- a/src/Fallout.Cli/Program.cs +++ b/src/Fallout.Cli/Program.cs @@ -39,7 +39,7 @@ private static int Main(string[] args) private static void PrintInfo() { - Host.Information($"NUKE Global Tool 🌐 {typeof(Program).Assembly.GetInformationalText()}"); + Host.Information($"Fallout Global Tool 🌐 {typeof(Program).Assembly.GetInformationalText()}"); } private static AbsolutePath TryGetRootDirectory()