return negative exit code on directory vaidation
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
- return error code not only on validation but also on recursive directory validation
|
||||||
- allow Bank credentials without BIC
|
- allow Bank credentials without BIC
|
||||||
- allow minimum profile without delivery date
|
- allow minimum profile without delivery date
|
||||||
- allow prepaid amount in invoice class
|
- allow prepaid amount in invoice class
|
||||||
|
|||||||
@@ -468,9 +468,11 @@ public class Main {
|
|||||||
String totalResult="valid";
|
String totalResult="valid";
|
||||||
if (!zfWalk.getResult()) {
|
if (!zfWalk.getResult()) {
|
||||||
totalResult="invalid";
|
totalResult="invalid";
|
||||||
|
System.exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
System.out.println("Overall test result: "+totalResult);
|
System.out.println("Overall test result: "+totalResult);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user