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

Side by Side Diff: tools/win/split_link/install_split_link.py

Issue 14655021: fix line endings on split_link scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/win/split_link/check_installed.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import _winreg 5 import _winreg
6 import os 6 import os
7 import shutil 7 import shutil
8 import subprocess 8 import subprocess
9 import sys 9 import sys
10 10
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 except IOError: 86 except IOError:
87 print("Wasn't able to copy split_link.exe over %s. " 87 print("Wasn't able to copy split_link.exe over %s. "
88 "Not running with Administrator privileges?" % link) 88 "Not running with Administrator privileges?" % link)
89 return 1 89 return 1
90 90
91 return 0 91 return 0
92 92
93 93
94 if __name__ == '__main__': 94 if __name__ == '__main__':
95 sys.exit(main()) 95 sys.exit(main())
OLDNEW
« no previous file with comments | « tools/win/split_link/check_installed.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698