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

Unified Diff: build/android/buildbot/bb_run_bot.py

Issue 307963002: os.rename instead of shutil.move (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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: build/android/buildbot/bb_run_bot.py
diff --git a/build/android/buildbot/bb_run_bot.py b/build/android/buildbot/bb_run_bot.py
index b847f9f80819bf1fc3b64354045cd010a82ea6e8..39ce4234c7b0a3a6fd439780e357c2d884ef68fa 100755
--- a/build/android/buildbot/bb_run_bot.py
+++ b/build/android/buildbot/bb_run_bot.py
@@ -290,8 +290,8 @@ def main(argv):
print '/b/build/slave/Android_Builder__dbg_378779 exists, skipping'
else:
print 'CLEANING UP CHECKOUT DIRECTORY HACK SEE http://crbug.com/378779'
- shutil.move('/b/build/slave/Android_Builder__dbg_',
- '/b/build/slave/Android_Builder__dbg_378779')
+ os.rename('/b/build/slave/Android_Builder__dbg_',
+ '/b/build/slave/Android_Builder__dbg_378779')
parser = GetRunBotOptParser()
options, args = parser.parse_args(argv[1:])
« 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