Comment update

Cleaning comments.
This commit is contained in:
andrew clark
2025-10-01 09:01:49 -06:00
parent 0e9ac4bb8e
commit 099609a58f

4
Jenkinsfile vendored
View File

@@ -57,7 +57,7 @@ def shouldRunCICheck() {
]
try {
// Get list of changed files
// Get the list of changed files
def changedFiles = sh(
returnStdout: true,
script: '''
@@ -78,7 +78,7 @@ def shouldRunCICheck() {
echo "Changed files: ${changedFiles.join(', ')}"
// Check if any changed files are not in the skip patterns.
// Check if any changed files are not in the skip patterns
def hasFilesRequiringCI = changedFiles.any { file ->
!skipFilePatterns.any { pattern ->
file ==~ pattern