You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Shipped in release v6.0.2.
Version v6.0.2 will be assigned to the latest npm channel soon
Install it using either v6.0.2 or the latest-rc npm channel
$ sf plugins install sfdx-git-delta@latest-rc
# Or
$ sf plugins install [email protected]
💡 Enjoying sfdx-git-delta?
Your contribution helps us provide fast support 🚀 and high quality features 🔥
Become a sponsor 💙
Happy incremental deployment!
Issue verification check:
What is the problem?
sf sgd source delta --to "HEAD" --from "HEAD~$commit_count" --output-dir . --json
cat package/package.xml
When try to get delta changes in gitlab CICD from commits the pipeline fails with below error
{
"status": 1,
"result": {
"output-dir": ".",
"error": "Cannot read properties of undefined (reading 'warnings')"
},
"warnings": []
}
What is the parameter and the value you used with it?
sf sgd source delta --to "HEAD" --from "HEAD~$commit_count" --output-dir . --json
What is the expected result?
{
"status": 0,
"result": {
"output-dir": ".",
},
"warnings": []
}
What is the actual result?
{
"status": 1,
"result": {
"output-dir": ".",
"error": "Cannot read properties of undefined (reading 'warnings')"
},
"warnings": []
}
The text was updated successfully, but these errors were encountered: