Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuler committed Aug 5, 2024
1 parent 69cc0e4 commit 70f1b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def buildImage(appName, appVersion, String type='CE') {
def depsBy = appBuildOption[env.repo]?.dependBy ?: []
def wasDepond = depsBy.contains(appName)

if (env.repo && (env.repo !== appName || !wasDepond)) {
if (env.repo && (env.repo != appName || !wasDepond)) {
echo "Skip ${appName} build, tigger is ${env.repo}, only deposBy ${depsBy}"
return
}
Expand Down

0 comments on commit 70f1b49

Please sign in to comment.