summaryrefslogtreecommitdiff
path: root/share/python/lib/runcmd_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/python/lib/runcmd_test.py')
-rw-r--r--share/python/lib/runcmd_test.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/share/python/lib/runcmd_test.py b/share/python/lib/runcmd_test.py
deleted file mode 100644
index 4aa5f49..0000000
--- a/share/python/lib/runcmd_test.py
+++ /dev/null
@@ -1,15 +0,0 @@
-import os
-
-
-def create_script_from_embedded(ctx, filename=None, embedded=None):
- files_create_from_embedded_with_other_name = globals()[
- "files_create_from_embedded_with_other_name"
- ]
-
- # Create the file.
- files_create_from_embedded_with_other_name(
- ctx, filename_on_disk=filename, embedded_file=embedded
- )
-
- # Make the new file executable.
- os.chmod(filename, 0o755)