summaryrefslogtreecommitdiff
path: root/platform/android/scripts/validate-license.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/scripts/validate-license.py')
-rw-r--r--platform/android/scripts/validate-license.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/platform/android/scripts/validate-license.py b/platform/android/scripts/validate-license.py
deleted file mode 100644
index 1c9a153b82..0000000000
--- a/platform/android/scripts/validate-license.py
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/python
-
-from subprocess import call
-from subprocess import Popen, PIPE
-import sys
-
-## Run license generation
-call('cd ../../ && make android-license', shell=True)
-
-## Git diff changes
-p = Popen(['git', 'diff', '--name-only', 'LICENSE.md'], stdin=PIPE, stdout=PIPE, stderr=PIPE)
-output, err = p.communicate(b"input data that is passed to subprocess' stdin")
-if b"platform/android/LICENSE.md" in output:
- raise ValueError("""An error ocurred while validating the license generation.
- Changes were detected to the license generation output
- but weren't commited. Run make android-license and
- commit the changeset to make this validation pass.""") \ No newline at end of file