add cmd line test profiles vs lookup

This commit is contained in:
afischerdev 2022-11-09 10:06:37 +01:00
parent 717f8c03d4
commit da878abb90

View file

@ -11,11 +11,11 @@ public class IntegrityCheckProfile {
return; return;
} }
IntegrityCheckProfile test = new IntegrityCheckProfile(); IntegrityCheckProfile test = new IntegrityCheckProfile();
try { try {
File lookupFile = new File( args[0] ); File lookupFile = new File( args[0] );
File profileDir = new File( args[1] ); File profileDir = new File( args[1] );
test.integrityTestProfiles(lookupFile, profileDir); test.integrityTestProfiles(lookupFile, profileDir);
} catch (Exception e) { } catch (Exception e) {
System.err.println(e.getMessage()); System.err.println(e.getMessage());
} }