From 304e7bfdc4cf973996214405c8ef627c9d426b30 Mon Sep 17 00:00:00 2001 From: Guillaume CHAUVEL Date: Mon, 12 Jun 2023 15:52:33 +0200 Subject: [PATCH] Fix yaml `workingDirectory` case --- doc/yamlConfigFile.md | 4 ++-- doc/yamlConfigurationSchema.json | 6 +++--- examples/sample-allOption.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/yamlConfigFile.md b/doc/yamlConfigFile.md index 01b3bd9..fde212c 100644 --- a/doc/yamlConfigFile.md +++ b/doc/yamlConfigFile.md @@ -282,10 +282,10 @@ serviceaccount: ### Working directory 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 -workingdirectory: 'C:\application' +workingDirectory: 'C:\application' ``` ### Priority diff --git a/doc/yamlConfigurationSchema.json b/doc/yamlConfigurationSchema.json index df9116b..ee2e9bd 100644 --- a/doc/yamlConfigurationSchema.json +++ b/doc/yamlConfigurationSchema.json @@ -41,9 +41,9 @@ "$id": "#/properties/hideWindow", "$ref": "#/definitions/boolPattern" }, - "workingdirectory": { - "$id": "#/properties/workingdirectory", - "description": "Some services need to run with a working directory specified. To do this, specify the workingdirectory element", + "workingDirectory": { + "$id": "#/properties/workingDirectory", + "description": "Some services need to run with a working directory specified. To do this, specify the workingDirectory element", "type": "string" }, "serviceAccount": { diff --git a/examples/sample-allOption.yml b/examples/sample-allOption.yml index 177f0b1..6b42665 100644 --- a/examples/sample-allOption.yml +++ b/examples/sample-allOption.yml @@ -23,7 +23,7 @@ executable: java # c:\cygwin\home\kohsuke\ws\hello-world\out\production\hello-world # test.Main #startArguments: start arguments -#workingdirectory: C:\myApp\work +#workingDirectory: C:\myApp\work priority: Normal stopTimeout: 15 sec stopParentProcessFirst: true