summaryrefslogtreecommitdiff
path: root/deps/gyp/test/ios/app-bundle/TestApp/check_no_signature.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/ios/app-bundle/TestApp/check_no_signature.py')
-rw-r--r--deps/gyp/test/ios/app-bundle/TestApp/check_no_signature.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/deps/gyp/test/ios/app-bundle/TestApp/check_no_signature.py b/deps/gyp/test/ios/app-bundle/TestApp/check_no_signature.py
deleted file mode 100644
index 4f6e340072..0000000000
--- a/deps/gyp/test/ios/app-bundle/TestApp/check_no_signature.py
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/python
-
-import os
-import subprocess
-import sys
-
-p = os.path.join(os.environ['BUILT_PRODUCTS_DIR'],os.environ['EXECUTABLE_PATH'])
-proc = subprocess.Popen(['codesign', '-v', p],
- stderr=subprocess.STDOUT, stdout=subprocess.PIPE)
-o = proc.communicate()[0].strip()
-if "code object is not signed at all" not in o:
- sys.stderr.write('File should not already be signed.')
- sys.exit(1)