aboutsummaryrefslogtreecommitdiffstats
path: root/run/tool.sh
diff options
context:
space:
mode:
authorsigoden <sigoden@gmail.com>2024-06-06 08:29:00 +0800
committerGitHub <noreply@github.com>2024-06-06 08:29:00 +0800
commitbfb7d75fe47ea588495c5be8157a67b1fec67a13 (patch)
treeb1996472711a1ccae391f1bded61adf3475b89ed /run/tool.sh
parent005d23030dab2b7708996e779dc78dd5f8ebdb8d (diff)
downloadllm-functions-docker-bfb7d75fe47ea588495c5be8157a67b1fec67a13.tar.gz
refactor: move tools/$lang/** to tools/** (#17)
Diffstat (limited to 'run/tool.sh')
-rwxr-xr-xrun/tool.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run/tool.sh b/run/tool.sh
index da9e412..4846c8e 100755
--- a/run/tool.sh
+++ b/run/tool.sh
@@ -13,7 +13,7 @@ if [[ "$FUNC_FILE" != *'.sh' ]]; then
fi
PROJECT_DIR="$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )/.." &> /dev/null && pwd)"
-FUNC_FILE="$PROJECT_DIR/tools/sh/$FUNC_FILE"
+FUNC_FILE="$PROJECT_DIR/tools/$FUNC_FILE"
if [[ "$OS" == "Windows_NT" ]]; then
FUNC_FILE="$(cygpath -w "$FUNC_FILE")"