Merge pull request #1343 from dgageot/fix-1342

[1342] Fix assignment to nil map
This commit is contained in:
CrazyMax 2022-10-04 17:31:06 +02:00 committed by GitHub
commit 398da1f916
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -801,6 +801,9 @@ func BuildWithResultHandler(ctx context.Context, drivers []DriverInfo, opt map[s
}
for n, v := range gitLabels {
if _, ok := opt.Labels[n]; !ok {
if opt.Labels == nil {
opt.Labels = map[string]string{}
}
opt.Labels[n] = v
}
}