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

Unified Diff: tools/bots/linux_distribution_support.py

Issue 2950783002: Make debian package builder more robust in uninstall step (Closed)
Patch Set: Created 3 years, 6 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
« 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: tools/bots/linux_distribution_support.py
diff --git a/tools/bots/linux_distribution_support.py b/tools/bots/linux_distribution_support.py
index 5d714db6c192261d62e88f744623f84d2ff9bb5f..7e86e8cc3576624e5c36a90b51683961d2926941 100644
--- a/tools/bots/linux_distribution_support.py
+++ b/tools/bots/linux_distribution_support.py
@@ -129,7 +129,8 @@ def SrcSteps(build_info):
'--out_dir', builddir])
with bot.BuildStep('Sanity check installation'):
- if os.path.exists('/usr/bin/dart'):
+ if os.path.exists('/usr/bin/dart') or os.path.exists(
+ '/usr/lib/dart/bin/dart2js'):
print "Dart already installed, removing"
UninstallDart()
TestInstallation(assume_installed=False)
« 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