From 1c5eddc86dac1d356332899680405e974af1e24e Mon Sep 17 00:00:00 2001 From: ztko <96878659+koztkozt@users.noreply.github.com> Date: Tue, 14 Nov 2023 14:37:46 +0800 Subject: [PATCH] Update Program.cs Fix the trailing / that is causing compilation issue --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index 5baa5aa..d31efb3 100644 --- a/Program.cs +++ b/Program.cs @@ -31,7 +31,7 @@ static void Main(string[] args) if (command == "redexec") { // Example usage: Latrealmove redexec 192.168.1.2 C:\localfile.exe C:\remotefile.exe MyServiceName - RedExec.Redexec(args.Skip(1).ToArray()); / + RedExec.Redexec(args.Skip(1).ToArray()); } if (command == "schedule") { @@ -47,4 +47,4 @@ static void Main(string[] args) } } } -} \ No newline at end of file +}