From e4c2d534fe1feb829a2d6422f31760c569f6b878 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sat, 30 Jul 2022 09:37:08 -0400 Subject: [PATCH] Apply #17 --- make.sh => tools/bin/td | 0 tools/env.sh | 7 +++++++ 2 files changed, 7 insertions(+) rename make.sh => tools/bin/td (100%) create mode 100644 tools/env.sh diff --git a/make.sh b/tools/bin/td similarity index 100% rename from make.sh rename to tools/bin/td diff --git a/tools/env.sh b/tools/env.sh new file mode 100644 index 0000000..dadcf26 --- /dev/null +++ b/tools/env.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env sh + +find tools/bin -type f | while IFS= read -r tool; do + chmod +x "$tool" +done + +PATH="$(pwd)/tools/bin:$PATH"