evilensky (Eugene Vilensky)
- Login: evilensky
- Email: evilensky@gmail.com
- Registered on: 10/09/2013
- Last sign in: 10/09/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/09/2013
-
04:50 AM Ruby Bug #9004: gem which command should exit with status of '1' if 1 or more gem arguments are not found
- Apologies for breaking the formatting of Description.
rpm case
# rpm -q man
man-1.6f-32.el6.x86_64
# echo $?
0
# rpm -q man cheese
man-1.6f-32.el6.x86_64
package cheese is not installed
# echo $?
1
gem which case
$ ge... -
04:45 AM Ruby Bug #9004 (Closed): gem which command should exit with status of '1' if 1 or more gem arguments are not found
- =begin
Many unix utilities exit with a code of 1 if any parts of the command fail, in particular ((%rpm%)). I believe its desirable for ((%gem which%)) to behave similar to ((%rpm -q%)) for this use case.
# rpm -q man
man-1.6f-...