Skip to content

Commit

Permalink
Fix if condition for tck interactive setup (#4320)
Browse files Browse the repository at this point in the history
Signed-off-by: Mesbah Alam <[email protected]>
  • Loading branch information
Mesbah-Alam authored Feb 8, 2023
1 parent 725402b commit fb2eae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildenv/jenkins/JenkinsfileBase
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ def get_sources() {
sh "$GET_SH_CMD"
}
}
if (env.BUILD_LIST.contains('jck') && SDK_RESOURCE.contains('customized' && params.SETUP_JCK_RUN )) {
if (params.SETUP_JCK_RUN && env.BUILD_LIST.contains('jck') && SDK_RESOURCE.contains('customized')) {
setup_jck_interactives()
}
}
Expand Down

0 comments on commit fb2eae0

Please sign in to comment.