Files
virt-manager/scripts/meson_dist.py
T
Pino Toscano af07c39b13 chore: format the code with black
(crobinso: compress to one commit, and adjust string concat issues)

Signed-off-by: Pino Toscano <ptoscano@redhat.com>
2025-03-03 11:40:37 -05:00

13 lines
281 B
Python

#!/usr/bin/env python3
import os
import shutil
import sys
file_name = sys.argv[1]
meson_build_root = os.environ["MESON_BUILD_ROOT"]
meson_dist_root = os.environ["MESON_DIST_ROOT"]
shutil.copy(os.path.join(meson_build_root, file_name), os.path.join(meson_dist_root, file_name))