Skip to content

Commit

Permalink
Remove with: null from merge function (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
swaldmann authored Apr 5, 2024
1 parent a10cb3f commit 229a4eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ module.exports = class CapOperatorAddPlugin extends cds.add.Plugin {
}

const project = cds.add.readProject()
await cds.add.merge(__dirname, '../files/chart/Chart.yaml.hbs').into('chart/Chart.yaml', { with: null, project })
await cds.add.merge(__dirname, '../files/chart/Chart.yaml.hbs').into('chart/Chart.yaml', { project })
await copy(join(__dirname, '../files/chart/values.yaml')).to('chart/values.yaml')
await copy(join(__dirname, '../files/chart/values.schema.json')).to('chart/values.schema.json')

Expand Down

0 comments on commit 229a4eb

Please sign in to comment.