Skip to content

Commit f16f7db

Browse files
committed
Fix CI test step invocation
1 parent 5bd2e80 commit f16f7db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

assets/ci-config

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ builds.Test = {
6060
sh label: "Analyze Complexity", script: './assets/ci.sh --target=analyze-complexity'
6161
}
6262
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
63-
sh label: "Analyze Shellscripts", script: './assets/ci.sh--target=analyze-shellscript'
63+
sh label: "Analyze Shellscripts", script: './assets/ci.sh --target=analyze-shellscript'
6464
}
6565
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
66-
sh label: "Code Statistics", script: '../assets/ci.sh --target=stats'
66+
sh label: "Code Statistics", script: './assets/ci.sh --target=stats'
6767
}
6868
}
6969
}
7070
}
7171

7272
parallel builds
73-
deploy.call()
73+
deploy.call()

0 commit comments

Comments
 (0)