Commit 4fc41d92 authored by maruel@chromium.org's avatar maruel@chromium.org

Set svn:executable bit on scripts that are executable.

R=binji@chromium.org
TEST=
BUG=

Review URL: http://codereview.chromium.org/10139026

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133844 0039d316-1c4b-4281-b951-d872f2087c98
parent 8973c3a2
#!/usr/bin/env python
# Copyright (c) 2012 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 # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
......
#! -*- python -*- #!/usr/bin/env python
#
# Copyright (c) 2012 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 # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
......
#! -*- python -*- #!/usr/bin/env python
#
# Copyright (c) 2012 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 # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
......
#!/usr/bin/env python
# Copyright (c) 2012 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 # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
......
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
...@@ -14,6 +14,7 @@ SDK_BUILD_DIR = buildbot_common.SCRIPT_DIR ...@@ -14,6 +14,7 @@ SDK_BUILD_DIR = buildbot_common.SCRIPT_DIR
MONO_BUILD_DIR = os.path.join(SDK_BUILD_DIR, 'mono_build') MONO_BUILD_DIR = os.path.join(SDK_BUILD_DIR, 'mono_build')
MONO_DIR = os.path.join(MONO_BUILD_DIR, 'nacl-mono') MONO_DIR = os.path.join(MONO_BUILD_DIR, 'nacl-mono')
def main(args): def main(args):
parser = optparse.OptionParser() parser = optparse.OptionParser()
parser.add_option('--arch', parser.add_option('--arch',
...@@ -116,5 +117,6 @@ def main(args): ...@@ -116,5 +117,6 @@ def main(args):
return 0 return 0
if __name__ == '__main__': if __name__ == '__main__':
sys.exit(main(sys.argv)) sys.exit(main(sys.argv))
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
...@@ -188,5 +188,6 @@ def main(): ...@@ -188,5 +188,6 @@ def main():
result = unittest.TextTestRunner(verbosity=2).run(suite) result = unittest.TextTestRunner(verbosity=2).run(suite)
return int(not result.wasSuccessful()) return int(not result.wasSuccessful())
if __name__=='__main__': if __name__=='__main__':
sys.exit(main()) sys.exit(main())
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment