Skip to content

Commit 6545e63

Browse files
authored
[PM-29151] Use absolute path for marketplace directory in Claude Code settings (#503)
Convert the marketplace directory path to absolute using `realpath` when writing to Claude Code settings.json to ensure proper plugin resolution.
1 parent 3b53acd commit 6545e63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/_review-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
172172
# Create Claude Code configuration
173173
jq -n \
174-
--arg path "$MARKETPLACE_DIR" \
174+
--arg path "$(realpath "$MARKETPLACE_DIR")" \
175175
'{
176176
extraKnownMarketplaces: {
177177
"bitwarden-marketplace": {

0 commit comments

Comments
 (0)