Kryštof Korb

Results 36 comments of Kryštof Korb

@jameswinglmi It is working even with double asterisk for me: ```console ajv validate -r "./**/!(schema).schema.json" -s schema.schema.json -d file.json ```

Also note the even better [new beta](https://docs.github.com/en/issues/tracking-your-work-with-issues/about-tasklists).

@yvele Yes, but you don't have to convert it JSON, it works with YAML too: ```console aws cloudformation package \ --template-file template.yaml \ --output-template-file packaged-template.yaml \ --s3-bucket bucket ```

@yvele You are doing it wrong, ~~YAML anchors don't work like that. Try to do it like in my example above.~~ you should use `&` instead of `$`. And I...

@yvele Yeah, because you are trying to resolve `SomeResource` inside `!ToJsonString`, that can't work, but that is not related to the YAML anchors.

Same for me with `aws logs`: ```shell aws logs filter-log-events \ --log-group-name log-group \ --query 'events[0].message' \ --output json "/usr/local/lib/ruby/2.7.0/net/protocol.rb:66: warning: already initialized constant Net::ProtocRetryError" ``` ```shell aws logs filter-log-events...