commit 9af221159393faaaa779c5978bee7cffd7651dec parent 8fe31c3f41077d9b60a2ee46528bf5709c834472 Author: Stefan Koch <programming@stefan-koch.name> Date: Sun, 15 Sep 2019 15:33:12 +0200 throw error if tree checkout in git fails Diffstat:
M | src/vcs.rs | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/vcs.rs b/src/vcs.rs @@ -50,7 +50,7 @@ impl GitWorkingCopy { self.repo.checkout_tree( &obj, None - ); + ).expect("Checkout of tree failed"); } }