Skip to content

Commit 41040af

Browse files
committed
fix: remove dangling clawdbot symlink conflicts
1 parent dfa8cb1 commit 41040af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ extract_clawdbot_conflict_path() {
105105

106106
cleanup_clawdbot_bin_conflict() {
107107
local bin_path="$1"
108-
if [[ -z "$bin_path" || ! -e "$bin_path" ]]; then
108+
if [[ -z "$bin_path" || ( ! -e "$bin_path" && ! -L "$bin_path" ) ]]; then
109109
return 1
110110
fi
111111
local npm_bin=""

0 commit comments

Comments
 (0)