aboutsummaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
authorGravatar SwiftyOS <craigswift13@gmail.com> 2023-09-21 08:06:12 +0200
committerGravatar SwiftyOS <craigswift13@gmail.com> 2023-09-21 08:06:26 +0200
commit186508e75cfca065ebaccbb38da6357e755f9209 (patch)
tree5c961388b0dd544857070c86fc48f422dc32fd5b /setup.sh
parentAdd Firebase Analytics dependency (diff)
downloadAuto-GPT-186508e75cfca065ebaccbb38da6357e755f9209.tar.gz
Auto-GPT-186508e75cfca065ebaccbb38da6357e755f9209.tar.bz2
Auto-GPT-186508e75cfca065ebaccbb38da6357e755f9209.zip
Removed flutter and chrome from setup as not required
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/setup.sh b/setup.sh
index 0aba96b21..adf26bfd2 100755
--- a/setup.sh
+++ b/setup.sh
@@ -28,35 +28,3 @@ else
curl -sSL https://install.python-poetry.org | python3 -
fi
fi
-
-if ! command -v flutter &> /dev/null
-then
- echo "flutter could not be found"
- echo "Please install flutter following the instrutions found at https://docs.flutter.dev/get-started/install"
- exit 1
-fi
-if [[ "$OSTYPE" == "linux-gnu"* ]]; then
- if ! command -v google-chrome-stable &> /dev/null
- then
- echo "Google Chrome could not be found"
- echo "Please install Google Chrome manually from https://www.google.com/chrome/"
- exit 1
- fi
-elif [[ "$OSTYPE" == "darwin"* ]]; then
- if ! command -v /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome &> /dev/null
- then
- echo "Google Chrome could not be found"
- echo "Please install Google Chrome manually from https://www.google.com/chrome/"
- exit 1
- fi
-elif [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]] || [[ "$OSTYPE" == "win32" ]]; then
- if ! command -v /c/Program\ Files\ \(x86\)/Google/Chrome/Application/chrome.exe &> /dev/null
- then
- echo "Google Chrome could not be found"
- echo "Please install Google Chrome manually from https://www.google.com/chrome/"
- exit 1
- fi
-else
- echo "Unsupported OS. Please install Google Chrome manually from https://www.google.com/chrome/"
- exit 1
-fi