-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
install: no output when running -s --strip-program
#5718
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
Comments
I tried to reproduce. But to me it looks like the file is created as expected. Can you please re-check or describe more in detail?
|
The issue is that the following statement produces no output on stdout:
GNU I hope this clarifies the issue. |
Ok, thanks for clarification. I think I finally understood the test.
After forcing the return code of "./no-hypen" to 0, I get this:
So GNU only outputs "./-dest" when this is provided exactly like this as input.
Sadly, uutils doesn't even output it in that case. a) It seems to me that the more critical issue is that uutils is not validating the return code of "./no-hyphen". |
I think I found the issue. uutils does the right thing. It just doesn't forward the stdout accordingly. |
… (#5848) * Fix missing dependency to "process" to make it compile. * fix issue of not forwarding stdout from strip program * fix issue of applying "./" redundantly * cargo fmt
Uh oh!
There was an error while loading. Please reload this page.
While reviewing #5697, I noticed that GNU
install
outputs./-dest
when runninginstall -s --strip-program ./no-hyphen -- source -dest
whereas uutilsinstall
doesn't output anything.The
no-hyphen
program is (from test_install_and_strip_with_program_hyphen):The text was updated successfully, but these errors were encountered: