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:
maruel@chromium.org 2012-04-23 03:24:12 +00:00
Родитель 4c732e9aed
Коммит ff50d0dcb5
5 изменённых файлов: 9 добавлений и 7 удалений

Просмотреть файл

@ -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.

13
cp.py Normal file → Executable 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]))

2
sanitize-mac-build-log.sed Normal file → Executable file
Просмотреть файл

@ -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.

0
sanitize-win-build-log.sed Normal file → Executable file
Просмотреть файл

0
win/install-build-deps.py Normal file → Executable file
Просмотреть файл