40 lines
1.2 KiB
Python
Executable File
40 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# Copyright (c) 2022 Samuel L Sloniker
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify it under
|
|
# the terms of the GNU General Public License as published by the Free Software
|
|
# Foundation, either version 3 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
# details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import os
|
|
import shutil
|
|
import sqlite3
|
|
|
|
try:
|
|
shutil.rmtree("build")
|
|
except FileNotFoundError:
|
|
pass
|
|
os.mkdir("build")
|
|
|
|
shutil.copy("articles.db", "build/articles.db")
|
|
shutil.copy("sources.toml", "build/sources.toml")
|
|
shutil.copy("compiler.toml", "build/compiler.toml")
|
|
shutil.copy("model.gptc", "build/model.gptc")
|
|
|
|
con = sqlite3.Connection("build/articles.db")
|
|
con.execute("UPDATE articles SET text = '***';")
|
|
con.commit()
|
|
con.execute("VACUUM;")
|
|
con.commit()
|
|
con.close()
|