Skip to content

Instantly share code, notes, and snippets.

@msrivastav13
Created October 12, 2020 21:02
Show Gist options
  • Save msrivastav13/b0c2ac1bc84bdf959e58092a4932bb6b to your computer and use it in GitHub Desktop.
Save msrivastav13/b0c2ac1bc84bdf959e58092a4932bb6b to your computer and use it in GitHub Desktop.
This one is for Retrieving org metadata using packages
{
"version": "2.0.0",
"tasks": [
{
"label": "SFDX: Retrieve Metadata From Package",
"type": "shell",
"command": "sfdx",
"args": [
"force:source:retrieve",
"-n",
"${input:packagename}"
],
"group": "build",
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
}
],
"inputs": [
{
"id": "packagename",
"description": "Enter Package Name:",
"type": "promptString"
},
]
}
@petrMooza
Copy link

thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment