f5
This commit is contained in:
@@ -26,7 +26,7 @@ class Platforms {
|
||||
def ok = true;
|
||||
def dn = key.toLowerCase()
|
||||
if (whiteList.size() > 0) {
|
||||
for (l in whiteList) {
|
||||
whiteList.each { l ->
|
||||
if (dn.indexOf(l) < 0) {
|
||||
ok = false;
|
||||
steps.print("${key} skip because of whiteList")
|
||||
@@ -34,7 +34,7 @@ class Platforms {
|
||||
}
|
||||
}
|
||||
}
|
||||
for (l in blackList) {
|
||||
blackList.each { l ->
|
||||
if (dn.indexOf(l) >= 0) {
|
||||
ok = false;
|
||||
steps.print("${key} skip because of blackList")
|
||||
|
||||
Reference in New Issue
Block a user