mirror of https://github.com/winsw/winsw
Fix yaml `workingDirectory` case
parent
6cf303c1d3
commit
304e7bfdc4
|
@ -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
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue