summaryrefslogtreecommitdiffstats
path: root/extract_binary_control.py
diff options
context:
space:
mode:
Diffstat (limited to 'extract_binary_control.py')
-rwxr-xr-xextract_binary_control.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/extract_binary_control.py b/extract_binary_control.py
deleted file mode 100755
index 1b498ba1..00000000
--- a/extract_binary_control.py
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env python3
-
-import arpy
-import sys
-
-ar=arpy.Archive(fileobj=sys.stdin.buffer)
-
-for f in ar:
- if f.header.name == b"control.tar.gz":
- sys.stdout.buffer.write(f.read())
- break