"feat(io): Panic if Git diff command fails"
This commit is contained in:
parent
28afb4942d
commit
8715e8b753
@ -1,3 +1,4 @@
|
|||||||
|
use core::panic;
|
||||||
use std::{
|
use std::{
|
||||||
fs::write,
|
fs::write,
|
||||||
io::Write,
|
io::Write,
|
||||||
@ -41,7 +42,11 @@ impl GitGrabber {
|
|||||||
.output()
|
.output()
|
||||||
.expect("Failed to get diff");
|
.expect("Failed to get diff");
|
||||||
|
|
||||||
let b = from_utf8(&staged_files_output.stdout).unwrap();
|
if !output.status.success() {
|
||||||
|
panic!("Did you forget to stage your files?");
|
||||||
|
}
|
||||||
|
|
||||||
|
let b = from_utf8(&output.stdout).unwrap();
|
||||||
String::from(b)
|
String::from(b)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user