Skip to content

Commit

Permalink
Add missing quote
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnstn committed Nov 9, 2023
1 parent dd757c5 commit e513af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gbm-cli/pkg/release/integrate/ios.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func (ii IosIntegration) UpdateGutenbergConfig(dir string, gbmPr gh.PullRequest)
updates = []string{".ref.tag = \"v" + gbmPr.ReleaseVersion + "\"", "del(.ref.commit)"}
} else {
console.Info("Updating gutenberg-mobile ref to the commit %s", gbmPr.Head.Sha)
updates = []string{".ref.commit = " + gbmPr.Head.Sha + "\"", "del(.ref.tag)"}
updates = []string{".ref.commit = \"" + gbmPr.Head.Sha + "\"", "del(.ref.tag)"}
}

configPath := filepath.Join(dir, "Gutenberg/config.yml")
Expand Down

0 comments on commit e513af8

Please sign in to comment.