Skip to content

Commit

Permalink
docs: Update readme.md with new links.
Browse files Browse the repository at this point in the history
  • Loading branch information
Harshavardhana committed Apr 1, 2016
1 parent 12adf3b commit e7f4b63
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
26 changes: 14 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,50 +28,52 @@

Download ``mc`` for:

- ``64-bit Intel`` from https://dl.minio.io/client/mc/release/linux-amd64/mc
- ``32-bit Intel`` from https://dl.minio.io/client/mc/release/linux-386/mc
- ``32-bit ARM`` from https://dl.minio.io/client/mc/release/linux-arm/mc
- ``64-bit Intel`` from https://dl.minio.io/client/mc/release/linux-amd64/mc.tar.gz
- ``32-bit Intel`` from https://dl.minio.io/client/mc/release/linux-386/mc.tar.gz
- ``32-bit ARM`` from https://dl.minio.io/client/mc/release/linux-arm/mc.tar.gz

~~~
$ chmod +x mc
$ tar -xzf mc.tar.gz
$ ./mc --help
~~~

#### OS X

Download ``mc`` from https://dl.minio.io/client/mc/release/darwin-amd64/mc
Download ``mc`` from https://dl.minio.io/client/mc/release/darwin-amd64/mc.zip

~~~
$ chmod 755 mc
$ unzip mc.zip
$ ./mc --help
~~~

#### Microsoft Windows

Download ``mc`` for:

- ``64-bit`` from https://dl.minio.io/client/mc/release/windows-amd64/mc.exe
- ``32-bit`` from https://dl.minio.io/client/mc/release/windows-386/mc.exe
- ``64-bit`` from https://dl.minio.io/client/mc/release/windows-amd64/mc.zip
- ``32-bit`` from https://dl.minio.io/client/mc/release/windows-386/mc.zip

Extract the downloaded zip file.

~~~
C:\Users\Username\Downloads> mc.exe --help
~~~

#### Solaris/Illumos

Download ``mc`` from https://dl.minio.io/client/mc/release/solaris-amd64/mc
Download ``mc`` from https://dl.minio.io/client/mc/release/solaris-amd64/mc.tar.gz

~~~
$ chmod 755 mc
$ tar -xzf mc.tar.gz
$ ./mc --help
~~~

#### FreeBSD

Download ``mc`` from https://dl.minio.io/client/mc/release/freebsd-amd64/mc
Download ``mc`` from https://dl.minio.io/client/mc/release/freebsd-amd64/mc.tar.gz

~~~
$ chmod 755 mc
$ tar -xzf mc.tar.gz
$ ./mc --help
~~~

Expand Down
5 changes: 1 addition & 4 deletions buildscripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,10 @@ go_build() {
cd "$release_str/$os-$arch"
$ZIP -r $release_real_zip $(basename $package) $(basename $package).shasum
cd -
elif [ $os == "linux" ]; then
else
cd "$release_str/$os-$arch"
$TAR -czf $release_real_tgz $(basename $package) $(basename $package).shasum
cd -
else
echo "$os operating system is not supported."
exit 1
fi
}

Expand Down

0 comments on commit e7f4b63

Please sign in to comment.