From 2c829794541adc3d4a71d71022462c49ca3d6bf9 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Mon, 20 Jun 2022 02:57:11 +0100 Subject: [PATCH] Add notice about testing --- Program.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Program.cs b/Program.cs index 89e0e02..dd339f4 100644 --- a/Program.cs +++ b/Program.cs @@ -52,6 +52,11 @@ class Program return 1; } + // It is very likely that this program will only work on linux. As such it is worth warning the user about this. + if (!OperatingSystem.IsLinux()) + { + Log.Warning("This program has only been tested on linux and cannot be assumed to work on other Operating Systems"); + } string _inputDirectory = args[0]; string _outputDirectory = args[1];