fixing task and file permissions
This commit is contained in:
parent
0202b019b2
commit
b6b5f784c8
11
.vscode/tasks.json
vendored
11
.vscode/tasks.json
vendored
@ -4,7 +4,7 @@
|
|||||||
{
|
{
|
||||||
"label": "generate-readme",
|
"label": "generate-readme",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "node update-readme.js",
|
"command": "node ${workspaceFolder}/update-readme.js",
|
||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
{
|
{
|
||||||
"label": "validate-collections",
|
"label": "validate-collections",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "node validate-collections.js",
|
"command": "node ${workspaceFolder}/validate-collections.js",
|
||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"group": "build",
|
"group": "build",
|
||||||
"detail": "Validates all collection manifest files."
|
"detail": "Validates all collection manifest files."
|
||||||
@ -23,8 +23,11 @@
|
|||||||
{
|
{
|
||||||
"label": "create-collection",
|
"label": "create-collection",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "${workspaceFolder}/create-collection.js",
|
"command": "node",
|
||||||
"args": ["${input:collectionId}"],
|
"args": [
|
||||||
|
"${workspaceFolder}/create-collection.js",
|
||||||
|
"${input:collectionId}"
|
||||||
|
],
|
||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"group": "build",
|
"group": "build",
|
||||||
"detail": "Creates a new collection manifest template."
|
"detail": "Creates a new collection manifest template."
|
||||||
|
|||||||
0
create-collection.js
Normal file → Executable file
0
create-collection.js
Normal file → Executable file
0
validate-collections.js
Normal file → Executable file
0
validate-collections.js
Normal file → Executable file
Loading…
x
Reference in New Issue
Block a user