Skip to content

Commit

Permalink
concated
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr authored Dec 17, 2023
1 parent 15be579 commit c80d442
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ fi
echo "Downloading Typst from $url"
curl -fsSL "$url" -o "$typst_install/$file"
if [ "$archive_ext" = ".zip" ]; then
unzip -d "$typst_install" -o "$file"
unzip -d "$typst_install" -o "$typst_install/$file"
else
tar -xJf "$file" -C "$typst_install"
tar -xJf "$typst_install/$file" -C "$typst_install"
fi

mkdir -p "$typst_install/bin"
Expand Down

0 comments on commit c80d442

Please sign in to comment.