chrome: bluetooth: hook up the AdapterAdded signal
[chromium-blink-merge.git] / build / cp.py
blob7dfeb3846b3c1e387f71b5244f435e9940cd4a2e
1 #!/usr/bin/python
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.
6 import shutil, sys;
8 """ Copy File.
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 """
14 def Main(src, dst):
15 return shutil.copyfile(src, dst)
17 if __name__ == '__main__':
18 sys.exit(Main(sys.argv[1], sys.argv[2]))