Browse Source

[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.
pull/505/head
Patrick Honkonen 2 weeks ago committed by GitHub
parent
commit
6545e63fd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/_review-code.yml

2
.github/workflows/_review-code.yml

@ -171,7 +171,7 @@ jobs: @@ -171,7 +171,7 @@ jobs:
# Create Claude Code configuration
jq -n \
--arg path "$MARKETPLACE_DIR" \
--arg path "$(realpath "$MARKETPLACE_DIR")" \
'{
extraKnownMarketplaces: {
"bitwarden-marketplace": {

Loading…
Cancel
Save