Allow trunk-path, branches-path and tags-path to be bool as well as string, fixes #6238
parent
92b25acce0
commit
e556649ad9
|
@ -606,9 +606,9 @@
|
||||||
"no-api": { "type": "boolean" },
|
"no-api": { "type": "boolean" },
|
||||||
"secure-http": { "type": "boolean" },
|
"secure-http": { "type": "boolean" },
|
||||||
"svn-cache-credentials": { "type": "boolean" },
|
"svn-cache-credentials": { "type": "boolean" },
|
||||||
"trunk-path": { "type": "string" },
|
"trunk-path": { "type": ["string", "boolean"] },
|
||||||
"branches-path": { "type": "string" },
|
"branches-path": { "type": ["string", "boolean"] },
|
||||||
"tags-path": { "type": "string" },
|
"tags-path": { "type": ["string", "boolean"] },
|
||||||
"package-path": { "type": "string" },
|
"package-path": { "type": "string" },
|
||||||
"depot": { "type": "string" },
|
"depot": { "type": "string" },
|
||||||
"branch": { "type": "string" },
|
"branch": { "type": "string" },
|
||||||
|
|
Loading…
Reference in New Issue