Skip to content

Commit ff709ae

Browse files
committed
update install.sh to come from S3
1 parent ce24dbf commit ff709ae

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ___
5656

5757
Just run the install script on macOS or Linux!
5858

59-
`curl -sSL https://raw.githubusercontent.com/cloud66/starter/master/install.sh | bash`
59+
`curl -sSL https://raw.githubusercontent.com/cloud66-oss/starter/master/install.sh | bash`
6060

6161
Or [download](https://github.com/cloud66-oss/starter/releases?utm_source=Githubdownload&utm_medium=GHDpage&utm_campaign=starter) Starter straight from this repo. Starter can run on Linux, Windows and macOS. Copy the Starter application into `/usr/local/bin/starter` and check if it has the executable flags, if not run `chmod a+x /usr/local/bin/starter`. Containerize your first application with Starter now:
6262

install.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,14 @@ do_install() {
4343
if is_os "darwin"; then
4444
e_info "Downloading Starter for macOS..."
4545
`rm -f /tmp/starter &> /dev/null`
46-
`curl -L --progress-bar -o /tmp/starter https://github.com/cloud66-oss/starter/releases/download/$version/starter_darwin_amd64`
46+
`curl -L --progress-bar -o /tmp/starter https://s3.amazonaws.com/downloads.cloud66.com/starter/darwin_amd64_v$version`
4747
elif is_os "linux"; then
4848
if [[ is_64 ]]; then
4949
e_info "Downloading Starter for Linux x64..."
5050
`rm -f /tmp/starter &> /dev/null`
51-
`curl -L --progress-bar -o /tmp/starter https://github.com/cloud66-oss/starter/releases/download/$version/starter_linux_amd64`
51+
`curl -L --progress-bar -o /tmp/starter https://s3.amazonaws.com/downloads.cloud66.com/starter/linux_amd64_v$version`
5252
else
53-
e_info "Downloading Starter for Linux x32..."
54-
`rm -f /tmp/starter &> /dev/null`
55-
`curl -L --progress-bar -o /tmp/starter https://github.com/cloud66-oss/starter/releases/download/$version/starter_linux_386`
53+
e_error "Aborted: 32 bit version of starter is not currently supported!"
5654
fi
5755
else
5856
e_error "Aborted: Unable to detect your operating system and architecture!"

0 commit comments

Comments
 (0)