Browse Source

Tools: fix sqlite database creation

zr-v5.1
Pierre Kancir 4 years ago committed by Peter Barker
parent
commit
fd0e822074
  1. 1
      Tools/scripts/build_binaries_history.py

1
Tools/scripts/build_binaries_history.py

@ -26,6 +26,7 @@ class BuildBinariesHistory(): @@ -26,6 +26,7 @@ class BuildBinariesHistory():
c.execute("create table build (hash text, tag text, vehicle text, board text, "
"frame text, text integer, data integer, bss integer, start_time real, duration real)")
c.execute("create table run (hash text, tag text, start_time real, duration real)")
c.commit()
def sizes_for_file(self, filepath):
cmd = "size %s" % (filepath,)

Loading…
Cancel
Save