Skip to content

Commit

Permalink
Merge pull request #96 from jpopelka/fix-typo
Browse files Browse the repository at this point in the history
Add missing commas
  • Loading branch information
jpopelka authored Jan 16, 2025
2 parents 60b152a + 43a3d5b commit 0ef1c10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vars/getBuildInfo.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def call(buildId) {
// TODO: we can do this mapping directly in BuildInfo class
def buildInfoMap = [
'id': buildInfo.id,
'nvr': buildInfo.nvr
'nvr': buildInfo.nvr,
'name': buildInfo.name,
'packageName': buildInfo.packageName,
'version': buildInfo.version,
Expand Down
2 changes: 1 addition & 1 deletion vars/getTaskInfo.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def call(taskId) {
'packageName': taskInfo.packageName,
'version': taskInfo.version,
'release': taskInfo.release,
'nvr': taskInfo.nvr
'nvr': taskInfo.nvr,
'buildId': taskInfo.buildId
]

Expand Down

0 comments on commit 0ef1c10

Please sign in to comment.