Add notice about testing

This commit is contained in:
Robert Morrison 2022-06-20 02:57:11 +01:00
parent 20840f0214
commit 2c82979454
Signed by: robert
GPG Key ID: 73E012EB3F4EC696

View File

@ -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];