aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/106 subproject symlink/cp.py
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/unit/106 subproject symlink/cp.py')
-rw-r--r--test cases/unit/106 subproject symlink/cp.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test cases/unit/106 subproject symlink/cp.py b/test cases/unit/106 subproject symlink/cp.py
new file mode 100644
index 0000000..adb0547
--- /dev/null
+++ b/test cases/unit/106 subproject symlink/cp.py
@@ -0,0 +1,6 @@
+#!/usr/bin/env python3
+
+from sys import argv
+from shutil import copy
+
+copy(argv[1], argv[2])