about summary refs log tree commit diff
path: root/src/etc/copy-runtime-deps.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/etc/copy-runtime-deps.py')
-rw-r--r--src/etc/copy-runtime-deps.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/etc/copy-runtime-deps.py b/src/etc/copy-runtime-deps.py
new file mode 100644
index 00000000000..16155a99b69
--- /dev/null
+++ b/src/etc/copy-runtime-deps.py
@@ -0,0 +1,16 @@
+#!/usr/bin/env python
+# xfail-license
+
+# Copies Rust runtime dependencies to the specified directory
+
+import snapshot, sys, os, shutil
+
+def copy_runtime_deps(dest_dir):
+    for path in snapshot.get_winnt_runtime_deps():
+        shutil.copy(path, dest_dir)
+
+    lic_dest = os.path.join(dest_dir, "third-party")
+    shutil.rmtree(lic_dest) # copytree() won't overwrite existing files
+    shutil.copytree(os.path.join(os.path.dirname(__file__), "third-party"), lic_dest)
+
+copy_runtime_deps(sys.argv[1])