Removing erroneous path from git-add
This commit is contained in:
parent
211a43e1c5
commit
75254f510c
1 changed files with 3 additions and 3 deletions
|
@ -83,9 +83,9 @@ class SaveGDBResults (ShellCommand):
|
||||||
repo.index.write ()
|
repo.index.write ()
|
||||||
|
|
||||||
if full_tag not in repo.tags:
|
if full_tag not in repo.tags:
|
||||||
repo.index.add (['%s/gdb.sum' % builder,
|
repo.index.add (['gdb.sum',
|
||||||
'%s/gdb.log' % builder,
|
'gdb.log',
|
||||||
'%s/%s/baseline' % (builder, branch)])
|
'%s/baseline' % branch])
|
||||||
if repo.is_dirty ():
|
if repo.is_dirty ():
|
||||||
repo.index.commit ('Log files for %s' % full_tag)
|
repo.index.commit ('Log files for %s' % full_tag)
|
||||||
repo.index.write ()
|
repo.index.write ()
|
||||||
|
|
Loading…
Reference in a new issue