diff --git a/text/0093-remove-shell-processes.md b/text/0093-remove-shell-processes.md index 269fee7c8..9a7f1876f 100644 --- a/text/0093-remove-shell-processes.md +++ b/text/0093-remove-shell-processes.md @@ -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: @@ -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. \ No newline at end of file +The RFC text should reflect what was actually implemented / agreed upon to avoid confusion.