Set svn:executable bit on scripts that are executable.
R=mark@chromium.org BUG= TEST= Review URL: http://codereview.chromium.org/10165021 git-svn-id: http://src.chromium.org/svn/trunk/src/build@133399 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
Родитель
4c732e9aed
Коммит
ff50d0dcb5
|
@ -1,4 +1,3 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
|
|
@ -1,18 +1,21 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
||||
#!/usr/bin/env python
|
||||
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
import shutil, sys;
|
||||
|
||||
""" Copy File.
|
||||
"""Copy a file.
|
||||
|
||||
This module works much like the cp posix command - it takes 2 arguments:
|
||||
(src, dst) and copies the file with path |src| to |dst|.
|
||||
"""
|
||||
|
||||
import shutil
|
||||
import sys
|
||||
|
||||
|
||||
def Main(src, dst):
|
||||
return shutil.copyfile(src, dst)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(Main(sys.argv[1], sys.argv[2]))
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/echo Use sanitize-mac-build-log.sh or sed -f
|
||||
|
||||
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
||||
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче