From 7f587a123fa29efe0c6ca6343de533fc61ff7356 Mon Sep 17 00:00:00 2001 From: Philipp Stehle Date: Tue, 28 Nov 2023 17:53:48 +0100 Subject: [PATCH] align toml tag of `working-dir` with spec (#268) See https://github.com/buildpacks/spec/blob/buildpack/v0.10/buildpack.md#launchtoml-toml Signed-off-by: Ralf Pannemans Co-authored-by: Ralf Pannemans --- application.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application.go b/application.go index e8836bf..d1fc509 100644 --- a/application.go +++ b/application.go @@ -49,7 +49,7 @@ type Process struct { Direct bool `toml:"direct,omitempty"` // WorkingDirectory is a directory to execute the command in, removes the need to use a shell environment to CD into working directory - WorkingDirectory string `toml:"working-directory,omitempty"` + WorkingDirectory string `toml:"working-dir,omitempty"` // Default can be set to true to indicate that the process // type being defined should be the default process type for the app image.