1
0
Fork 0
llvm-premerge-checks/scripts/metrics/repo_history.py
2020-02-18 13:19:40 +01:00

10 lines
No EOL
190 B
Python
Executable file

#!/usr/bin/env python3
import sqlite3
import os
conn = sqlite3.connect(os.path.expanduser('~/llvm-propject.db'))
c = conn.cursor()
c.execute('CREATE TABLE repo (hash text)')
conn.commit()