From aefecd579d6dbc6c8d3084419f286c37480dd2c2 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 20 Feb 2016 22:31:14 -0500 Subject: [PATCH] git-repack: handle missing packed refs --- .bin/git-repack | 1 + 1 file changed, 1 insertion(+) diff --git a/.bin/git-repack b/.bin/git-repack index b225fca..bdceb68 100755 --- a/.bin/git-repack +++ b/.bin/git-repack @@ -63,6 +63,7 @@ def readfile(path): """Read |path| and return its data""" if os.path.isfile(path): return open(path).read() + return '' def unlink(path): -- 2.39.2