Skip to content

Commit

Permalink
fix: docs and OSTYPE case
Browse files Browse the repository at this point in the history
  • Loading branch information
mike325 committed May 21, 2024
1 parent 2bcac1d commit 09ff8b3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ if [ -z "$SHELL_PLATFORM" ]; then
if [[ -n $TRAVIS_OS_NAME ]]; then
export SHELL_PLATFORM="$TRAVIS_OS_NAME"
else
case "$(uname -o)" in
case "$OSTYPE" in
*'linux'*) export SHELL_PLATFORM='linux' ;;
*'darwin'*) export SHELL_PLATFORM='osx' ;;
*'msys'*) export SHELL_PLATFORM='msys' ;;
Expand Down Expand Up @@ -309,7 +309,9 @@ Usage:
-t, --portables Install isolated/portable programs into $HOME/.local/bin
- neovim - shellcheck
- texlab - fd
- stylua - fd
- stylua - lazygit
- bat - delta
- gh - shfmt
- ripgrep - pip2 and pip3
- fzf (Linux only) - jq (Linux only)
Expand Down

0 comments on commit 09ff8b3

Please sign in to comment.