-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple commands is not supported in Procfile #326
Comments
Currently I can only run multiple command by |
That is correct. I also use a |
@michaelshobbs But in heroku, |
Because its hard to do it and not a common pattern. I would actually say that such a Procfile is wrong, but since there isn't a Procfile standard out there, shrug. If you would like to submit a pull request to change this (with tests!) feel more than free to do so. I'd be happy to review :) |
OK. Thanks for clarifying my doubt. |
I'd like to note with the backref above, that this is expected behavior in a lot of apps targeting heroku out of the box, like for instance https://github.com/tootsuite/mastodon |
If you'd like to make a pull request implementing this functionality, that would be great. Otherwise, I don't think it's worth the effort. |
command_a; command_b
orcommand_a && command_b
format command in Procfile is not supported.This is because
eval echo "$@
inexec setuidgid "$unprivileged_user" $(eval echo "$@")
herokuish/include/procfile.bash
Line 55 in 1bf5365
The text was updated successfully, but these errors were encountered: