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: build/cp.py

Issue 10700163: Rename aura_shell_unittests to ash_unittests, part 1 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase, fix typo Created 8 years, 5 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 | « build/all.gyp ('k') | tools/heapcheck/chrome_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/cp.py
diff --git a/build/cp.py b/build/cp.py
index d0c46f412d6ddfe5cd00b675395e8af81a95ba5e..dd98e1db15d2bd2144d1791d9c84509f32d886a8 100755
--- a/build/cp.py
+++ b/build/cp.py
@@ -14,7 +14,8 @@ import sys
def Main(src, dst):
- return shutil.copyfile(src, dst)
+ # Use copy instead of copyfile to ensure the executable bit is copied.
+ return shutil.copy(src, dst)
if __name__ == '__main__':
« no previous file with comments | « build/all.gyp ('k') | tools/heapcheck/chrome_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698