Skip to content

Commit

Permalink
fix: minAppVersion is actually a float in disguise
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-psi committed Jul 4, 2022
1 parent 3018427 commit a7ad3eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/aidoku/cmd/resources/schemas/source.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@
},
"minAppVersion": {
"type": "string",
"pattern": "(\\d\\.){2}\\d"
"pattern": "\\d\\.\\d"
},
"maxAppVersion": {
"type": "string",
"pattern": "(\\d\\.){2}\\d"
"pattern": "\\d\\.\\d"
}
},
"required": [
Expand Down

0 comments on commit a7ad3eb

Please sign in to comment.