From b6b5f784c8b226b527c22b614e74d582631aff8c Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Mon, 15 Sep 2025 11:12:54 +1000 Subject: [PATCH] fixing task and file permissions --- .vscode/tasks.json | 11 +++++++---- create-collection.js | 0 validate-collections.js | 0 3 files changed, 7 insertions(+), 4 deletions(-) mode change 100644 => 100755 create-collection.js mode change 100644 => 100755 validate-collections.js diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 3c19b49..c9a8861 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,7 +4,7 @@ { "label": "generate-readme", "type": "shell", - "command": "node update-readme.js", + "command": "node ${workspaceFolder}/update-readme.js", "problemMatcher": [], "group": { "kind": "build", @@ -15,7 +15,7 @@ { "label": "validate-collections", "type": "shell", - "command": "node validate-collections.js", + "command": "node ${workspaceFolder}/validate-collections.js", "problemMatcher": [], "group": "build", "detail": "Validates all collection manifest files." @@ -23,8 +23,11 @@ { "label": "create-collection", "type": "shell", - "command": "${workspaceFolder}/create-collection.js", - "args": ["${input:collectionId}"], + "command": "node", + "args": [ + "${workspaceFolder}/create-collection.js", + "${input:collectionId}" + ], "problemMatcher": [], "group": "build", "detail": "Creates a new collection manifest template." diff --git a/create-collection.js b/create-collection.js old mode 100644 new mode 100755 diff --git a/validate-collections.js b/validate-collections.js old mode 100644 new mode 100755