From: Mike Frysinger Date: Sun, 21 Feb 2016 03:31:14 +0000 (-0500) Subject: git-repack: handle missing packed refs X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=aefecd579d6dbc6c8d3084419f286c37480dd2c2;p=home.git git-repack: handle missing packed refs --- 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):