Skip to content

Commit

Permalink
Fix quote error
Browse files Browse the repository at this point in the history
Signed-off-by: Divya Madala <[email protected]>
  • Loading branch information
Divyaasm committed Feb 3, 2025
1 parent e6f37bf commit cf6d46a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ pipeline {
def existingComponent = existingManifest.components.find { it.name == componentName.name }
if (existingComponent) {
def branchRef = params.RELEASE_VERSION.toString().split('\\.')[0..1].join('.')
echo "${branchRef}"
existingComponent.ref = "${branchRef}"
}
}
Expand Down Expand Up @@ -221,6 +220,7 @@ pipeline {
if (status) {
sh """
git diff manifests/2.18.0/opensearch-2.18.0.yml
git diff manifests/2.18.0/opensearch-dashboards-2.18.0.yml
git status --porcelain | grep '^ M' | cut -d " " -f3 | xargs git add
git commit -sm "Manifest Commit Lock for Release ${params.RELEASE_VERSION}"
git push origin manifest-lock --force
Expand Down

0 comments on commit cf6d46a

Please sign in to comment.