diff --git a/CodexNetDeployer/Program.cs b/CodexNetDeployer/Program.cs index 4ac3a2f..13a4fd9 100644 --- a/CodexNetDeployer/Program.cs +++ b/CodexNetDeployer/Program.cs @@ -35,6 +35,13 @@ public class Program return; } + if (!args.Any(a => a == "-y")) + { + Console.WriteLine("Does the above config look good? [y/n]"); + if (Console.ReadLine()!.ToLowerInvariant() != "y") return; + Console.WriteLine("I think so too."); + } + var deployer = new Deployer(config); var deployment = deployer.Deploy();