Skip to content

Commit f476dba

Browse files
fix missing comma (#139)
1 parent 099c1d3 commit f476dba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "venona",
3-
"version": "1.2.14",
3+
"version": "1.2.15",
44
"description": "Codefresh agent to run on Codefresh's runtime environment and execute pipeline",
55
"main": "index.js",
66
"scripts": {

venonactl/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.14
1+
1.2.15

venonactl/pkg/plugins/venona.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ func (u *venonaPlugin) Migrate(opt *MigrateOptions, v Values) error {
265265
migrationData := migrationData{
266266
Tolerations: list.Items[0].Spec.Tolerations,
267267
NodeSelector: list.Items[0].Spec.NodeSelector,
268-
Env: list.Items[0].Spec.Containers[0].Env
268+
Env: list.Items[0].Spec.Containers[0].Env,
269269
}
270270
var jsonData []byte
271271
jsonData, err = json.Marshal(migrationData)

0 commit comments

Comments
 (0)