buster / rrun

minimalistic command launcher in rust
GNU General Public License v2.0
112 stars 14 forks source link

get rid of unwrap() #16

Open buster opened 8 years ago

buster commented 8 years ago

The source code is making use of far too many unwrap() calls. We should handle all return values explicitely and fail with a good and explanatory message if some call doesn't return Ok() (unwrap() just panics with some message that doesn't help at all).