Signed-off-by: Stefan Beller <redacted>
---
read-cache.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/read-cache.c b/read-cache.c
index f72ea9f..769897e 100644
--- a/read-cache.c
+++ b/read-cache.c
@@ -703,9 +703,7 @@ int add_to_index(struct index_state *istate, const char *path, struct stat *st,
!hashcmp(alias->sha1, ce->sha1) &&
ce->ce_mode == alias->ce_mode);
- if (pretend)
- ;
- else if (add_index_entry(istate, ce, add_option))
+ if (!pretend && add_index_entry(istate, ce, add_option))
return error("unable to add %s to index",path);
if (verbose && !was_same)
printf("add '%s'\n", path);--
2.3.0.81.gc37f363