Skip to content

Commit 88ef7ac

Browse files
committed
fix(opencode.ai): fix noclobber.
1 parent cca06e4 commit 88ef7ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/opencode.ai/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ curl_download_unzip() {
7474
local target=$3
7575
local bin_path=$4
7676
local temp_file=$(mktemp)
77-
curl_download_stdout "$url" > "$temp_file"
77+
curl_download_stdout "$url" >| "$temp_file"
7878
unzip -j "$temp_file" "$bin_path" -d "$target"
7979
rm "$temp_file"
8080
}

0 commit comments

Comments
 (0)