From 1ce95992755d98bfff9106f9c91da49348a64e26 Mon Sep 17 00:00:00 2001 From: Syping Date: Sun, 26 Oct 2025 20:15:09 +0100 Subject: [PATCH] remove broken create command --- Program.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 4ae10c5..dff82ed 100644 --- a/Program.cs +++ b/Program.cs @@ -6,7 +6,7 @@ internal static class Program { private static void Main(String[] args) { RootCommand rootCommand = new("ragephoto-cli Application") { - CreateCommand, GetCommand, SetCommand + GetCommand, SetCommand }; rootCommand.Parse(args).Invoke(); } @@ -21,6 +21,7 @@ internal static class Program { _ => throw new ArgumentException("Invalid format", nameof(format)) }; + /* NOTE: Photo corrupts here... */ if (jpegFile == String.Empty) { photo.Jpeg = Properties.Resources.EmptyJpeg; }