summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rwxr-xr-xci/scripts/handle-subprojects-cache.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/scripts/handle-subprojects-cache.py b/ci/scripts/handle-subprojects-cache.py
index 9e3722111d..7e126e5fbf 100755
--- a/ci/scripts/handle-subprojects-cache.py
+++ b/ci/scripts/handle-subprojects-cache.py
@@ -8,6 +8,7 @@ import shutil
import os
import sys
import argparse
+import subprocess
DEST = "/subprojects"
PARSER = argparse.ArgumentParser()
@@ -69,6 +70,7 @@ def copy_cache(options):
print("Copying from %s -> %s" % (cache_dir, project_path))
shutil.copytree(cache_dir, project_path)
+ subprocess.check_call(['meson', 'subprojects', 'update', '--reset'])
if __name__ == "__main__":