Skip to content

Commit

Permalink
Fix example process definition in RFC 0093
Browse files Browse the repository at this point in the history
RFC 0093 contains a number of examples of how to migrate a buildpack
away from `direct=false` mode.

One of these examples was missing the "bash" command prior
to the "-c" argument.

Signed-off-by: Ed Morley <[email protected]>
  • Loading branch information
edmorley authored Apr 28, 2023
1 parent e27efb9 commit 3086c83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions text/0093-remove-shell-processes.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Using the new API this process could look like:
```
[[processes]]
type = "bash"
command = ["-c", "dotnet", "my-app.dll", "--urls", "http://0.0.0.0:${PORT:-8080}"]
command = ["bash", "-c", "dotnet", "my-app.dll", "--urls", "http://0.0.0.0:${PORT:-8080}"]
default = true
```
Things to note:
Expand Down Expand Up @@ -400,4 +400,4 @@ In addition to the changes described originally in 0093 we'd like some way of ve

Why was this amendment necessary?

The RFC text should reflect what was actually implemented / agreed upon to avoid confusion.
The RFC text should reflect what was actually implemented / agreed upon to avoid confusion.

0 comments on commit 3086c83

Please sign in to comment.