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

Side by Side Diff: depot_tools/bootstrap/win/unzip.js

Issue 8055016: Fix EOL issues. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: '' Created 9 years, 2 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 | « depot_tools/bootstrap/win/svn.new.bat ('k') | depot_tools/bootstrap/win/win_tools.bat » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Modified: svn:eol-style
- LF
+ CRLF
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 function Unzip(file, path, verbose) { 5 function Unzip(file, path, verbose) {
6 if (verbose) { 6 if (verbose) {
7 WScript.StdOut.Write(" * UNZIP " + file); 7 WScript.StdOut.Write(" * UNZIP " + file);
8 } 8 }
9 var shell_app; 9 var shell_app;
10 var fso; 10 var fso;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 var result = (this + (this < 0 ? 0x100000000 : 0)).toString(16); 82 var result = (this + (this < 0 ? 0x100000000 : 0)).toString(16);
83 while (result.length < length) result = "0" + result; 83 while (result.length < length) result = "0" + result;
84 return result; 84 return result;
85 }; 85 };
86 86
87 if (WScript.Arguments.length != 2) { 87 if (WScript.Arguments.length != 2) {
88 WScript.StdOut.Write("Incorrect arguments to unzip.js") 88 WScript.StdOut.Write("Incorrect arguments to unzip.js")
89 } else { 89 } else {
90 Unzip(WScript.Arguments(0), WScript.Arguments(1), false); 90 Unzip(WScript.Arguments(0), WScript.Arguments(1), false);
91 } 91 }
OLDNEW
« no previous file with comments | « depot_tools/bootstrap/win/svn.new.bat ('k') | depot_tools/bootstrap/win/win_tools.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698