Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Unified Diff: third_party/instrumented_libraries/scripts/download_binaries.py

Issue 2732353002: Instrumented libraries: Remove Precise support (Closed)
Patch Set: Rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/instrumented_libraries/scripts/download_binaries.py
diff --git a/third_party/instrumented_libraries/scripts/download_binaries.py b/third_party/instrumented_libraries/scripts/download_binaries.py
index 869e766344fef3f7965abbf2607f1cc6d26d3c3e..b7e87b2eda6f79270c8645d7eae50b58a1822ab1 100755
--- a/third_party/instrumented_libraries/scripts/download_binaries.py
+++ b/third_party/instrumented_libraries/scripts/download_binaries.py
@@ -20,7 +20,7 @@ BASE_DIR = os.path.basename(BASE_PATH)
def get_ubuntu_release():
- supported_releases = ['precise', 'trusty']
+ supported_releases = ['trusty']
release = subprocess.check_output(['lsb_release', '-cs']).strip()
if release not in supported_releases:
raise Exception("Supported Ubuntu versions: %s", str(supported_releases))

Powered by Google App Engine
This is Rietveld 408576698