Fix command config portion of project schema (#8057)

This commit is contained in:
Mitchell Stern
2020-04-16 21:08:17 -04:00
committed by GitHub
parent 6545534805
commit d0c6f013c3
+14 -12
View File
@@ -150,18 +150,15 @@
}
},
"config": {
"description": "Configuration options for the command",
"type": "object",
"items": {
"description": "Configuration options for the command",
"type": "object",
"properties": {
"tmux": {
"description": "If true, the command will be run inside of tmux",
"type": "boolean"
}
},
"additionalProperties": false
}
"properties": {
"tmux": {
"description": "If true, the command will be run inside of tmux",
"type": "boolean"
}
},
"additionalProperties": false
}
},
"required": [
@@ -171,7 +168,12 @@
"additionalProperties": false
}
},
"output_files": {}
"output_files": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name",