Skip to content

Instantly share code, notes, and snippets.

@nbari
Forked from jacoelho/golang.sh
Created December 16, 2015 14:05
Show Gist options
  • Save nbari/ff628df2dbaa1fb53d72 to your computer and use it in GitHub Desktop.
Save nbari/ff628df2dbaa1fb53d72 to your computer and use it in GitHub Desktop.

Revisions

  1. @jacoelho jacoelho revised this gist Dec 3, 2015. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions golang.sh
    Original file line number Diff line number Diff line change
    @@ -19,6 +19,7 @@ curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
    && rm golang.tar.gz

    for bin in $(ls /usr/local/go/bin/); do
    test -f /usr/bin/$bin && rm /usr/bin/$bin
    update-alternatives --install /usr/bin/$bin $bin /usr/local/go/bin/$bin 1
    update-alternatives --set $bin /usr/local/go/bin/$bin
    done
  2. @jacoelho jacoelho revised this gist Dec 3, 2015. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions golang.sh
    Original file line number Diff line number Diff line change
    @@ -20,4 +20,5 @@ curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \

    for bin in $(ls /usr/local/go/bin/); do
    update-alternatives --install /usr/bin/$bin $bin /usr/local/go/bin/$bin 1
    update-alternatives --set $bin /usr/local/go/bin/$bin
    done
  3. @jacoelho jacoelho revised this gist Dec 3, 2015. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions golang.sh
    Original file line number Diff line number Diff line change
    @@ -1,8 +1,8 @@
    #!/bin/bash

    export GOLANG_VERSION=1.5.1
    export GOLANG_VERSION=1.5.2
    export GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
    export GOLANG_DOWNLOAD_SHA1=46eecd290d8803887dec718c691cc243f2175fe0
    export GOLANG_DOWNLOAD_SHA1=cae87ed095e8d94a81871281d35da7829bd1234e

    apt-get update -qq

  4. @jacoelho jacoelho revised this gist Sep 22, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion golang.sh
    Original file line number Diff line number Diff line change
    @@ -18,6 +18,6 @@ curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
    && tar -C /usr/local -xzf golang.tar.gz \
    && rm golang.tar.gz

    for bin in go godoc gofmt; do
    for bin in $(ls /usr/local/go/bin/); do
    update-alternatives --install /usr/bin/$bin $bin /usr/local/go/bin/$bin 1
    done
  5. @jacoelho jacoelho created this gist Sep 22, 2015.
    23 changes: 23 additions & 0 deletions golang.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    #!/bin/bash

    export GOLANG_VERSION=1.5.1
    export GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
    export GOLANG_DOWNLOAD_SHA1=46eecd290d8803887dec718c691cc243f2175fe0

    apt-get update -qq

    apt-get install -y --no-install-recommends \
    g++ \
    gcc \
    libc6-dev \
    make \
    git-core

    curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
    && echo "$GOLANG_DOWNLOAD_SHA1 golang.tar.gz" | sha1sum -c - \
    && tar -C /usr/local -xzf golang.tar.gz \
    && rm golang.tar.gz

    for bin in go godoc gofmt; do
    update-alternatives --install /usr/bin/$bin $bin /usr/local/go/bin/$bin 1
    done