Skip to content

Commit 8055f75

Browse files
committed
Switch all golang.org references to use https
1 parent 5a66872 commit 8055f75

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

1.2.1/cross/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:1.2.1
22

3-
# see http://golang.org/doc/install/source#environment
3+
# see https://golang.org/doc/install/source#environment
44
# see also http://build.golang.org/
55
# and canonically, see defs_OS_ARCH.h files in src/pkg/runtime
66
# https://code.google.com/p/go/source/browse?name=go1.2.2#hg%2Fsrc%2Fpkg%2Fruntime

1.2.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99

1010
ENV GOLANG_VERSION 1.2.2
1111

12-
RUN curl -sSL http://golang.org/dl/go$GOLANG_VERSION.src.tar.gz \
12+
RUN curl -sSL https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz \
1313
| tar -v -C /usr/src -xz
1414

1515
RUN cd /usr/src/go/src && ./make.bash --no-clean 2>&1

1.2.2/cross/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:1.2.2
22

3-
# see http://golang.org/doc/install/source#environment
3+
# see https://golang.org/doc/install/source#environment
44
# see also http://build.golang.org/
55
# and canonically, see defs_OS_ARCH.h files in src/pkg/runtime
66
# https://code.google.com/p/go/source/browse?name=go1.2.2#hg%2Fsrc%2Fpkg%2Fruntime

1.2/cross/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:1.2
22

3-
# see http://golang.org/doc/install/source#environment
3+
# see https://golang.org/doc/install/source#environment
44
# see also http://build.golang.org/
55
# and canonically, see defs_OS_ARCH.h files in src/pkg/runtime
66
# https://code.google.com/p/go/source/browse?name=go1.2.2#hg%2Fsrc%2Fpkg%2Fruntime

1.3.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99

1010
ENV GOLANG_VERSION 1.3.1
1111

12-
RUN curl -sSL http://golang.org/dl/go$GOLANG_VERSION.src.tar.gz \
12+
RUN curl -sSL https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz \
1313
| tar -v -C /usr/src -xz
1414

1515
RUN cd /usr/src/go/src && ./make.bash --no-clean 2>&1

1.3.1/cross/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:1.3.1
22

3-
# see http://golang.org/doc/install/source#environment
3+
# see https://golang.org/doc/install/source#environment
44
# see also http://build.golang.org/
55
# and canonically, see defs_OS_ARCH.h files in src/pkg/runtime
66
# https://code.google.com/p/go/source/browse?name=go1.3#hg%2Fsrc%2Fpkg%2Fruntime

1.3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99

1010
ENV GOLANG_VERSION 1.3
1111

12-
RUN curl -sSL http://golang.org/dl/go$GOLANG_VERSION.src.tar.gz \
12+
RUN curl -sSL https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz \
1313
| tar -v -C /usr/src -xz
1414

1515
RUN cd /usr/src/go/src && ./make.bash --no-clean 2>&1

1.3/cross/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:1.3
22

3-
# see http://golang.org/doc/install/source#environment
3+
# see https://golang.org/doc/install/source#environment
44
# see also http://build.golang.org/
55
# and canonically, see defs_OS_ARCH.h files in src/pkg/runtime
66
# https://code.google.com/p/go/source/browse?name=go1.3#hg%2Fsrc%2Fpkg%2Fruntime

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fi
1010
versions=( "${versions[@]%/}" )
1111

1212
for version in "${versions[@]}"; do
13-
#fullVersion="$(curl -sSL 'http://golang.org/dl' | grep '">go'"$version"'.*\.src.tar.gz<' | sed -r 's!.*go([^"/<]+)\.src\.tar\.gz.*!\1!' | sort -V | tail -1)"
13+
#fullVersion="$(curl -sSL 'https://golang.org/dl' | grep '">go'"$version"'.*\.src.tar.gz<' | sed -r 's!.*go([^"/<]+)\.src\.tar\.gz.*!\1!' | sort -V | tail -1)"
1414
fullVersion="$version"
1515
(
1616
set -x

0 commit comments

Comments
 (0)