Skip to content

Commit 186508e

Browse files
committed
Removed flutter and chrome from setup as not required
1 parent 62efc6b commit 186508e

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

Diff for: setup.sh

-32
Original file line numberDiff line numberDiff line change
@@ -28,35 +28,3 @@ else
2828
curl -sSL https://install.python-poetry.org | python3 -
2929
fi
3030
fi
31-
32-
if ! command -v flutter &> /dev/null
33-
then
34-
echo "flutter could not be found"
35-
echo "Please install flutter following the instrutions found at https://docs.flutter.dev/get-started/install"
36-
exit 1
37-
fi
38-
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
39-
if ! command -v google-chrome-stable &> /dev/null
40-
then
41-
echo "Google Chrome could not be found"
42-
echo "Please install Google Chrome manually from https://www.google.com/chrome/"
43-
exit 1
44-
fi
45-
elif [[ "$OSTYPE" == "darwin"* ]]; then
46-
if ! command -v /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome &> /dev/null
47-
then
48-
echo "Google Chrome could not be found"
49-
echo "Please install Google Chrome manually from https://www.google.com/chrome/"
50-
exit 1
51-
fi
52-
elif [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]] || [[ "$OSTYPE" == "win32" ]]; then
53-
if ! command -v /c/Program\ Files\ \(x86\)/Google/Chrome/Application/chrome.exe &> /dev/null
54-
then
55-
echo "Google Chrome could not be found"
56-
echo "Please install Google Chrome manually from https://www.google.com/chrome/"
57-
exit 1
58-
fi
59-
else
60-
echo "Unsupported OS. Please install Google Chrome manually from https://www.google.com/chrome/"
61-
exit 1
62-
fi

0 commit comments

Comments
 (0)