Skip to content

Commit

Permalink
Minor improvements
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
  • Loading branch information
pditommaso committed Sep 16, 2023
1 parent b30efe3 commit fff3d7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ class TaskProcessor {
def file = workDir.resolve(path)
def exists = checkFileExists(file, param.followLinks)
if( exists )
result = [file]
result = List.of(file)
else
log.debug "Process `${safeTaskName(task)}` is unable to find [${file.class.simpleName}]: `$file` (pattern: `$filePattern`)"
}
Expand Down

0 comments on commit fff3d7b

Please sign in to comment.