From cbfe5dc100aff39d8ea829426378e4d9b42744ae Mon Sep 17 00:00:00 2001 From: Syping Date: Mon, 27 Oct 2025 04:26:31 +0100 Subject: [PATCH] check for update sign in set command --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index e096697..f83e740 100644 --- a/Program.cs +++ b/Program.cs @@ -148,8 +148,8 @@ internal static class Program { } private static void Set(FileInfo photoFile, String? format, String? jpegFile, String? description, String? json, String? title, bool updateSign, String? outputFile) { - if (format == null && jpegFile == null && - description == null && json == null && title == null) { + if (format == null && jpegFile == null && description == null + && json == null && title == null && !updateSign) { Console.Error.WriteLine("No value has being set"); Environment.Exit(1); }