Created
October 12, 2020 21:02
-
-
Save msrivastav13/b0c2ac1bc84bdf959e58092a4932bb6b to your computer and use it in GitHub Desktop.
This one is for Retrieving org metadata using packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you!