Skip to content

Commit b3fd17c

Browse files
authored
AX-1469 Fix an issue where the hook could fail when home paths contained spaces. (#10)
This fixes an issue where the hooks plugin path was unquoted leading to potential issues when users home paths contained spaces.
1 parent 67c9995 commit b3fd17c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.cursor-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"metadata": {
88
"description": "JFrog Platform plugins for Cursor",
9-
"version": "0.3.3",
9+
"version": "0.3.4",
1010
"pluginRoot": "plugins"
1111
},
1212
"plugins": [

plugins/jfrog/.cursor-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jfrog",
33
"displayName": "JFrog Platform",
4-
"version": "0.3.3",
4+
"version": "0.3.4",
55
"description": "JFrog Platform integration with MCP, security skills, supply-chain best practices, and JFrog MCP Gateway governance for adding, removing, and listing MCP servers.",
66
"author": {
77
"name": "JFrog",

plugins/jfrog/hooks/hooks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"hooks": {
44
"sessionStart": [
55
{
6-
"command": "node ./scripts/inject-instructions.mjs",
6+
"command": "node \"./scripts/inject-instructions.mjs\"",
77
"timeout": 7
88
}
99
]

0 commit comments

Comments
 (0)