From dfbd601307839a9ac6dfa9285be7015b6a578e39 Mon Sep 17 00:00:00 2001 From: ywkj Date: Fri, 20 Mar 2026 06:56:31 +0800 Subject: [PATCH] fix: add install.sh to always fetch latest git deps Co-Authored-By: Claude Opus 4.6 --- install.sh | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100755 install.sh diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..bb1b3ff --- /dev/null +++ b/install.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +set -euo pipefail +cd "$(dirname "$0")" + +# Always fetch latest git dependencies +rm -rf node_modules/@clawd +npm install diff --git a/package.json b/package.json index cf162b9..b5a18dc 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,6 @@ "typescript": "^5.0.0" }, "dependencies": { - "@clawd/auth-runtime": "git+http://192.168.0.108:3030/agent-skills/auth-runtime.git#v1.1.0" + "@clawd/auth-runtime": "git+http://192.168.0.108:3030/agent-skills/auth-runtime.git" } }