File tree 1 file changed +0
-32
lines changed
1 file changed +0
-32
lines changed Original file line number Diff line number Diff line change 28
28
curl -sSL https://install.python-poetry.org | python3 -
29
29
fi
30
30
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
You can’t perform that action at this time.
0 commit comments