Fix yaml `workingDirectory` case

pull/1040/head
Guillaume CHAUVEL 2023-06-12 15:52:33 +02:00
parent 6cf303c1d3
commit 304e7bfdc4
3 changed files with 6 additions and 6 deletions

View File

@ -282,10 +282,10 @@ serviceaccount:
### Working directory ### Working directory
Some services need to run with a working directory specified. Some services need to run with a working directory specified.
To do this, specify a `workingdirectory` element like this: To do this, specify a `workingDirectory` element like this:
```yaml ```yaml
workingdirectory: 'C:\application' workingDirectory: 'C:\application'
``` ```
### Priority ### Priority

View File

@ -41,9 +41,9 @@
"$id": "#/properties/hideWindow", "$id": "#/properties/hideWindow",
"$ref": "#/definitions/boolPattern" "$ref": "#/definitions/boolPattern"
}, },
"workingdirectory": { "workingDirectory": {
"$id": "#/properties/workingdirectory", "$id": "#/properties/workingDirectory",
"description": "Some services need to run with a working directory specified. To do this, specify the workingdirectory element", "description": "Some services need to run with a working directory specified. To do this, specify the workingDirectory element",
"type": "string" "type": "string"
}, },
"serviceAccount": { "serviceAccount": {

View File

@ -23,7 +23,7 @@ executable: java
# c:\cygwin\home\kohsuke\ws\hello-world\out\production\hello-world # c:\cygwin\home\kohsuke\ws\hello-world\out\production\hello-world
# test.Main # test.Main
#startArguments: start arguments #startArguments: start arguments
#workingdirectory: C:\myApp\work #workingDirectory: C:\myApp\work
priority: Normal priority: Normal
stopTimeout: 15 sec stopTimeout: 15 sec
stopParentProcessFirst: true stopParentProcessFirst: true