[libcxx-commits] [libcxx] f998e0d - [libc++] Make executor scripts executable
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jun 12 07:29:21 PDT 2020
Author: Louis Dionne
Date: 2020-06-12T10:29:04-04:00
New Revision: f998e0d679e5af454207dc8b015cad87a2152903
URL: https://github.com/llvm/llvm-project/commit/f998e0d679e5af454207dc8b015cad87a2152903
DIFF: https://github.com/llvm/llvm-project/commit/f998e0d679e5af454207dc8b015cad87a2152903.diff
LOG: [libc++] Make executor scripts executable
This allows running the scripts directly, without running them through
Python.
Added:
Modified:
libcxx/utils/run.py
libcxx/utils/ssh.py
Removed:
################################################################################
diff --git a/libcxx/utils/run.py b/libcxx/utils/run.py
old mode 100644
new mode 100755
index e91836b96886..e88fff128248
--- a/libcxx/utils/run.py
+++ b/libcxx/utils/run.py
@@ -1,3 +1,4 @@
+#!/usr/bin/env python
#===----------------------------------------------------------------------===##
#
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
diff --git a/libcxx/utils/ssh.py b/libcxx/utils/ssh.py
old mode 100644
new mode 100755
index 314b13b0da10..f74ed785bbbf
--- a/libcxx/utils/ssh.py
+++ b/libcxx/utils/ssh.py
@@ -1,3 +1,4 @@
+#!/usr/bin/env python
#===----------------------------------------------------------------------===##
#
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
More information about the libcxx-commits
mailing list