diff --git a/config.json b/config.json index c7f1a3e..d548a1d 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,6 @@ { - "repos" : [ - "launchdarkly/js-core" + "repos": [ + "launchdarkly/js-core", + "launchdarkly/cpp-sdks" ] } diff --git a/scripts/ci/format-json.sh b/scripts/ci/format-json.sh index 4741f41..1f0a4b1 100755 --- a/scripts/ci/format-json.sh +++ b/scripts/ci/format-json.sh @@ -1,5 +1,7 @@ #!/bin/bash +jq . config.json > config.json.tmp && mv config.json.tmp config.json + for file in ./products/*.json; do jq . "$file" > "$file.tmp" && mv "$file.tmp" "$file" done