From 2e08f0442f2286c90bbb7d522b3a024f0fb94f71 Mon Sep 17 00:00:00 2001 From: nakst <> Date: Sat, 1 Jan 2022 22:44:17 +0000 Subject: [PATCH] uname use a flag instead of o --- start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.sh b/start.sh index cf31772..c698d81 100755 --- a/start.sh +++ b/start.sh @@ -7,14 +7,14 @@ cd "$(dirname "$0")" mkdir -p bin bin/dependency_files bin/Logs bin/generated_code bin/cache # Check that we are running on a sensible platform. -uname -o | grep Cygwin > /dev/null +uname -a | grep Cygwin > /dev/null if [ $? -ne 1 ]; then echo Cygwin is not supported. Please install a modern GNU/Linux distro. exit fi # Setup for Darwin. -uname -o | grep Darwin > /dev/null +uname -a | grep Darwin > /dev/null if [ $? -ne 1 ]; then export CC=gcc-11 export CXX=g++-11