-
Notifications
You must be signed in to change notification settings - Fork 446
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
Fix logging for SystemV packages #1022
Conversation
The current implementation has no effect; nothing is logged. '>>' seems to be passed to the process as a parameter and not something that is interpretted by the shell. This approach is in line with the accepted solution suggested at https://stackoverflow.com/a/21029952/183863 Fixes sbt#1021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The debian / sysvinit-deb
init test is failing as we check for the startup line. Can you change this :)
The failing MacOSX build can be ignored. Seems that travis doesn't like the |
I'll be on vacation un 20.10. Thanks for your understanding if this can't be merged until then |
hi ho 😄 @timcharper after |
I noticed this too. Thanks for the fix, I can confirm it works. It's odd that |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 1 for merging after a fix for
debian / sysvinit-deb
.
@kardapoltsev do you have the time to fix the test and merge this? I think easiest way is to open a new PR based on this one. 😍😍 |
Ok, will create new PR tomorrow. |
Awesome. Happy holidays 🤩 |
ping @kardapoltsev 😉 You want to update this one? |
Merged in #1096 |
The current implementation has no effect; nothing is logged. '>>' seems
to be passed to the process as a parameter and not something that is
interpretted by the shell.
This approach is in line with the accepted solution suggested at
https://stackoverflow.com/a/21029952/183863
Fixes #1021