From f998e0d679e5af454207dc8b015cad87a2152903 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Fri, 12 Jun 2020 10:28:19 -0400 Subject: [PATCH] [libc++] Make executor scripts executable This allows running the scripts directly, without running them through Python. --- libcxx/utils/run.py | 1 + libcxx/utils/ssh.py | 1 + 2 files changed, 2 insertions(+) mode change 100644 => 100755 libcxx/utils/run.py mode change 100644 => 100755 libcxx/utils/ssh.py 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. -- 2.7.4