From 06b8c759429b455eae58127a6871abe18ebba08c Mon Sep 17 00:00:00 2001 From: STAM Date: Thu, 1 Apr 2021 20:33:21 +0300 Subject: [PATCH] chmod +x fix --- bin/chmod.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 bin/chmod.sh diff --git a/bin/chmod.sh b/bin/chmod.sh new file mode 100755 index 000000000..397510aa9 --- /dev/null +++ b/bin/chmod.sh @@ -0,0 +1,4 @@ +#!/bin/bash +cd .. +find . -name '*.sh' -type f | xargs chmod +x +find . -name '*.py' -type f | xargs chmod +x \ No newline at end of file