aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android/bin/download_toolchains.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform_tools/android/bin/download_toolchains.py')
-rwxr-xr-xplatform_tools/android/bin/download_toolchains.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/platform_tools/android/bin/download_toolchains.py b/platform_tools/android/bin/download_toolchains.py
deleted file mode 100755
index 9922283dc0..0000000000
--- a/platform_tools/android/bin/download_toolchains.py
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/python
-
-"""Download all toolchains for this platform.
-
-This module downloads multiple tgz's.
-"""
-
-import download_utils
-import sys
-
-url = sys.argv[1]
-filepath = sys.argv[2]
-
-try:
- download_utils.SyncURL(url, filepath)
- exit(0)
-except download_utils.HashError, e:
- exit(1)
-