mirror of
https://github.com/danbulant/deno_install
synced 2026-07-06 03:31:01 +00:00
Use overwrite option during unzip (#101)
This commit is contained in:
parent
b635b52584
commit
f163b0286f
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ fi
|
||||||
|
|
||||||
curl --fail --location --progress-bar --output "$exe.zip" "$deno_uri"
|
curl --fail --location --progress-bar --output "$exe.zip" "$deno_uri"
|
||||||
cd "$bin_dir"
|
cd "$bin_dir"
|
||||||
unzip "$exe.zip"
|
unzip -o "$exe.zip"
|
||||||
chmod +x "$exe"
|
chmod +x "$exe"
|
||||||
rm "$exe.zip"
|
rm "$exe.zip"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue