OLD | NEW |
---|---|
(Empty) | |
1 #!/usr/bin/python | |
M-A Ruel
2011/11/23 03:06:38
This file is not needed. Use the gyp action 'copie
bradn
2011/11/23 04:11:01
Copies doesn't work for his use case, as he need s
| |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
3 # Use of this source code is governed by a BSD-style license that can be | |
4 # found in the LICENSE file. | |
5 | |
6 import shutil, sys; | |
7 | |
8 """ Copy File. | |
9 | |
10 This module works much like the cp posix command - it takes 2 arguments: | |
11 (src, dst) and copies the file with path |src| to |dst|. | |
12 """ | |
13 | |
14 def Main(src, dst): | |
15 return shutil.copyfile(src, dst) | |
16 | |
17 if __name__ == '__main__': | |
18 sys.exit(Main(sys.argv[1], sys.argv[2])) | |
OLD | NEW |