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

Unified Diff: download_firefox_nightly.py

Issue 117203002: Temporarily disabling firefox hooks on mac and win. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/webrtc/webrtc.DEPS/
Patch Set: Created 7 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: download_firefox_nightly.py
===================================================================
--- download_firefox_nightly.py (revision 240895)
+++ download_firefox_nightly.py (working copy)
@@ -52,7 +52,10 @@
print 'Downloaded %s' % firefox_archive
# Extract the archive.
+ # TODO(phoglund): implement on win/mac
if sys.platform == 'darwin':
+ print "Temporarily disabled on mac..."
+ return 0
volume = '/Volumes/Nightly'
firefox_executable = '%s/FirefoxNightly.app' % target_dir
@@ -66,6 +69,8 @@
tar_archive = tarfile.open(firefox_archive, 'r:bz2')
tar_archive.extractall(path=target_dir)
elif sys.platform == 'win32':
+ print "Temporarily disabled on win..."
+ return 0
zip_archive = zipfile.ZipFile(firefox_archive)
zip_archive.extractall(path=target_dir)
else:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698