Skip to content

Commit

Permalink
fix: rename install task since this is not allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
daanporon committed Apr 9, 2024
1 parent 0098314 commit 916e3bb
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "2.0.0",
"tasks": [
{
"label": "package",
"label": "package chaincode",
"type": "shell",
"command": "./lib/btp-chaincode-lifecycle/chaincode.sh package",
"group": {
Expand All @@ -12,31 +12,31 @@
"problemMatcher": []
},
{
"label": "install",
"label": "deploy chaincode",
"type": "shell",
"command": "./lib/btp-chaincode-lifecycle/chaincode.sh install",
"problemMatcher": []
},
{
"label": "approve",
"label": "approve chaincode",
"type": "shell",
"command": "./lib/btp-chaincode-lifecycle/chaincode.sh approve",
"problemMatcher": []
},
{
"label": "commit",
"label": "commit chaincode",
"type": "shell",
"command": "./lib/btp-chaincode-lifecycle/chaincode.sh commit",
"problemMatcher": []
},
{
"label": "init",
"label": "init chaincode",
"type": "shell",
"command": "./lib/btp-chaincode-lifecycle/chaincode.sh init",
"problemMatcher": []
},
{
"label": "peers",
"label": "list peers",
"type": "shell",
"command": "./lib/btp-chaincode-lifecycle/chaincode.sh peers",
"problemMatcher": []
Expand All @@ -48,6 +48,5 @@
"problemMatcher": []
}
],
"inputs": [
]
"inputs": []
}

0 comments on commit 916e3bb

Please sign in to comment.