-
-
Notifications
You must be signed in to change notification settings - Fork 289
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 issue with logs that contains space in the path #783
Fix issue with logs that contains space in the path #783
Conversation
…nt in quotes to prevent the faulty behavior as per https://stackoverflow.com/a/43793896
PR build pushed to |
This will break multiple log paths Try escaping the space in your var instead |
PR build pushed to |
I tried that at the begging but couldn't make it work.
Results in
And version without quotes
give the same results
Current solution with parsing to array seems to work but I'm not very good with bash so maybe it has some other downsides
result:
|
@piotrmaj I didn't see that you had updated your PR to use an array. That would be the proper fix. Please rename the array to Thanks |
@aptalca good point about the array name - updated the PR. Thanks for the review and for the work on linuxserver images, they are awesome! I noticed that for some reason docker build failed now due to |
Thanks. Docker hub has been having issues today. |
PR build pushed to |
Fix issue with logs that contains space in the path: wrap tail argument in quotes to prevent the faulty behavior as per https://stackoverflow.com/a/43793896