Add notice about testing
This commit is contained in:
parent
20840f0214
commit
2c82979454
|
|
@ -52,6 +52,11 @@ class Program
|
||||||
return 1;
|
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 _inputDirectory = args[0];
|
||||||
string _outputDirectory = args[1];
|
string _outputDirectory = args[1];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user