Skip to content

Commit

Permalink
windows install fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mico Papp committed Jul 5, 2023
1 parent 59af8d7 commit 025f367
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ elif [ "${uname:0:5}" == "Linux" ]; then
INSTALL_PATH=/usr/local/bin/jssl
elif [ "${uname:0:10}" == "MINGW32_NT" ]; then
# 32 bits Windows NT platform
mkdir -p "$HOME"/bin
curl -o "$HOME"/bin/jssl -s https://raw.githubusercontent.com/pmamico/java-ssl-tools/main/src/jssl
INSTALL_PATH=$HOME/bin/jssl
elif [ "${uname:0:10}" == "MINGW64_NT" ]; then
# 64 bits Windows NT platform
mkdir -p "$HOME"/bin
curl -o "$HOME"/bin/jssl -s https://raw.githubusercontent.com/pmamico/java-ssl-tools/main/src/jssl
INSTALL_PATH=$HOME/bin/jssl
fi
Expand Down

0 comments on commit 025f367

Please sign in to comment.