mirror of
https://github.com/KSP-CKAN/CKAN-meta.git
synced 2024-10-13 00:59:46 +00:00
Fix spec_version on ContractConfigurator-ContractPack-SCANsat
The spec special-cases `1` as a spec version, which is defined as an integer. However these files contained `1` as a string. My whiny pedantic validator complains as a result. :)
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
{
|
||||
"spec_version": "1",
|
||||
"spec_version": 1,
|
||||
"identifier": "ContractConfigurator-ContractPack-SCANsat",
|
||||
"abstract": "A contract pack containing contracts for SCANSat.",
|
||||
"name": "Contract Pack: SCANSat",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"spec_version": "1",
|
||||
"spec_version": 1,
|
||||
"identifier": "ContractConfigurator-ContractPack-SCANsat",
|
||||
"abstract": "A contract pack containing contracts for SCANSat.",
|
||||
"name": "Contract Pack: SCANSat",
|
||||
|
Reference in New Issue
Block a user