mirror of
https://github.com/aclist/dztui.git
synced 2026-08-25 17:32:36 +02:00
12 lines
230 B
Python
12 lines
230 B
Python
import shutil
|
|
import subprocess
|
|
from pathlib import Path
|
|
|
|
par = Path(__file__).parent.parent
|
|
clog = par / "CHANGELOG.md"
|
|
target = par / "dzgui/data/CHANGELOG.md"
|
|
|
|
shutil.copy(clog, target)
|
|
|
|
subprocess.call(["git", "add", target])
|