From f163b0286f3951fd32bf259436464b86e5bbf978 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 2 Apr 2020 00:36:46 -0400 Subject: [PATCH] Use overwrite option during unzip (#101) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 4f8e7a9..316ce1b 100755 --- a/install.sh +++ b/install.sh @@ -36,7 +36,7 @@ fi curl --fail --location --progress-bar --output "$exe.zip" "$deno_uri" cd "$bin_dir" -unzip "$exe.zip" +unzip -o "$exe.zip" chmod +x "$exe" rm "$exe.zip"