summaryrefslogtreecommitdiff
path: root/ci/ciimage
diff options
context:
space:
mode:
Diffstat (limited to 'ci/ciimage')
-rwxr-xr-xci/ciimage/build.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/ciimage/build.py b/ci/ciimage/build.py
index 559723c0c..b9d318158 100755
--- a/ci/ciimage/build.py
+++ b/ci/ciimage/build.py
@@ -143,13 +143,14 @@ class ImageTester(BuilderBase):
shutil.copytree(
self.meson_root,
self.temp_dir / 'meson',
+ symlinks=True,
ignore=shutil.ignore_patterns(
'.git',
'*_cache',
'__pycache__',
# 'work area',
self.temp_dir.name,
- )
+ ),
)
def do_test(self, tty: bool = False) -> None: