public static void Run()

in build/Shell.cs [13:30]


        public static void Run(string program, string arguments, bool streamOutput = true, bool silent = false)
        {
            var exe = new InternalExe(program, arguments, streamOutput);

            if (!silent)
            {
                ColoredConsole.WriteLine($"> {program} {arguments}".Green());
            }

            var exitcode = silent
                ? exe.Run()
                : exe.Run(l => ColoredConsole.Out.WriteLine(l.DarkGray()), e => ColoredConsole.Error.WriteLine(e.Red()));

            if (exitcode != 0)
            {
                throw new Exception($"{program} Exit Code == {exitcode}");
            }
        }