From 75254f510c2c4f3a75a3db788bb968b565ff96c2 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Wed, 14 Jan 2015 13:30:28 -0500 Subject: [PATCH] Removing erroneous path from git-add --- lib/gdbgitdb.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/gdbgitdb.py b/lib/gdbgitdb.py index 8368c9d..3f86f55 100644 --- a/lib/gdbgitdb.py +++ b/lib/gdbgitdb.py @@ -83,9 +83,9 @@ class SaveGDBResults (ShellCommand): repo.index.write () if full_tag not in repo.tags: - repo.index.add (['%s/gdb.sum' % builder, - '%s/gdb.log' % builder, - '%s/%s/baseline' % (builder, branch)]) + repo.index.add (['gdb.sum', + 'gdb.log', + '%s/baseline' % branch]) if repo.is_dirty (): repo.index.commit ('Log files for %s' % full_tag) repo.index.write ()