pull/225/merge
Benny 2022-03-12 10:46:09 +01:00 committed by GitHub
commit 8eac25e9e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -41,9 +41,10 @@ case "$(uname -s)" in
Darwin*) system=MacOS;;
CYGWIN*) system=Cygwin;;
MINGW*) system=MinGw;;
SunOS*) system=Sun;;
*) system="Other"
esac
if [[ ! $system =~ Linux|MacOS|BSD ]]; then
if [[ ! $system =~ Linux|MacOS|BSD|Sun ]]; then
echo "This version of bashtop does not support $system platform."
exit 1
fi