mirror of
https://github.com/virt-manager/virt-manager.git
synced 2026-09-03 20:52:52 -05:00
(crobinso: compress to one commit, and adjust string concat issues) Signed-off-by: Pino Toscano <ptoscano@redhat.com>
13 lines
281 B
Python
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))
|