[libc++] Make executor scripts executable
This allows running the scripts directly, without running them through
Python.
diff --git a/libcxx/utils/run.py b/libcxx/utils/run.py
old mode 100644
new mode 100755
index e91836b..e88fff1
--- 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 314b13b..f74ed78
--- 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.