diff options
author | Harmen Stoppels <me@harmenstoppels.nl> | 2023-10-20 09:51:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-20 09:51:49 +0200 |
commit | 468f6c757edbd7ae72b822bfab5f435ebfa4bf69 (patch) | |
tree | c2e4f7e9d4c550d0e3a90577297206bc6bc14e79 /.gitattributes | |
parent | 0907d437838cd3392708d2e0a2053b51e63f45ee (diff) | |
download | spack-468f6c757edbd7ae72b822bfab5f435ebfa4bf69.tar.gz spack-468f6c757edbd7ae72b822bfab5f435ebfa4bf69.tar.bz2 spack-468f6c757edbd7ae72b822bfab5f435ebfa4bf69.tar.xz spack-468f6c757edbd7ae72b822bfab5f435ebfa4bf69.zip |
schema/compilers.py: fix validation of 2+ entries (#40627)
Fix the following syntax which validates only the first array entry:
```python
"compilers": {
"type": "array",
"items": [
{
"type": ...
}
]
}
```
to
```python
"compilers": {
"type": "array",
"items": {
"type": ...
}
}
```
which validates the entire array.
Oops...
Diffstat (limited to '.gitattributes')
0 files changed, 0 insertions, 0 deletions