From 27b204b5fbc14a0d098d106afa00eafa05501fb1 Mon Sep 17 00:00:00 2001 From: ywkj Date: Fri, 20 Mar 2026 06:56:43 +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 50e536b..efaf610 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ }, "dependencies": { "@aws-sdk/client-s3": "^3.1004.0", - "@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", "@clawd/r2-upload": "git+http://192.168.0.108:3030/agent-skills/r2-upload.git" } }