Skip to content

Commit

Permalink
Merge pull request #284 from edmorley/patch-1
Browse files Browse the repository at this point in the history
Fix example process definition in RFC 0093
  • Loading branch information
sambhav authored Apr 29, 2023
2 parents e27efb9 + 3086c83 commit b8abe33
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 b8abe33

Please sign in to comment.