fix typo in config type

fa930db0748400180b3f31c70c5e70a401778201

Tucker McKnight | Wed Dec 31 2025

fix typo in config type
schemas/ReposConfiguration.json:5
Before
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
        "artifactSteps": {
          "items": {
            "additionalProperties": false,
            "properties": {
              "command": {
                "type": "string"
              },
              "copyFrom": {
                "type": "string"
              },
              "copyTo": {
                "type": "string"
              }
            },
            "required": [
              "command",
              "copyFrom",
              "copyTo"
            ],
            "type": "object"
          },
          "type": "array"
        },
After
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
schemas/ReposConfiguration.json:54
Before
54
After
54
        "buildSteps": {
          "items": {
            "additionalProperties": false,
            "properties": {
              "command": {
                "type": "string"
              },
              "copyFrom": {
                "type": "string"
              },
              "copyTo": {
                "type": "string"
              }
            },
            "required": [
              "command",
              "copyFrom",
              "copyTo"
            ],
            "type": "object"
          },
          "type": "array"
        },
src/configTypes.ts:58
Before
58
59
60
61
  buildSteps?: 
      command: string,
      copyFrom: string,
      copyTo: string,
After
58
59
60
61
  buildSteps?: {
    command: string,
    copyFrom: string,
    copyTo: string,