Skip to content

Commit a149d3a

Browse files
committed
Update rbenv & ruby-build github URLs
1 parent bb1382e commit a149d3a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

test/integration/docker/Dockerfile.echo.amazonlinux

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ RUN yum update -y && \
1010
yum install -y git-core zlib zlib-devel gcc-c++ patch readline readline-devel libffi-devel openssl-devel make bzip2 autoconf automake libtool bison curl sqlite-devel
1111

1212
RUN rm -rf /root/.rbenv/
13-
RUN git clone git://github.com/sstephenson/rbenv.git /root/.rbenv
13+
RUN git clone https://github.com/rbenv/rbenv.git /root/.rbenv
1414
ENV PATH="/root/.rbenv/bin:$PATH"
1515
RUN echo 'eval "$(rbenv init -)"' >> /root/.bashrc
16-
RUN git clone git://github.com/sstephenson/ruby-build.git /root/.rbenv/plugins/ruby-build
16+
RUN git clone https://github.com/rbenv/ruby-build.git /root/.rbenv/plugins/ruby-build
1717
RUN source /root/.bashrc
1818
RUN RUNTIME_VERSIONS=($(rbenv install -L | grep -oE $(echo "^${RUNTIME_VERSION}\.[0-9]+"))) && \
1919
RUNTIME_LATEST_VERSION=${RUNTIME_VERSIONS[-1]} && \

test/integration/docker/Dockerfile.echo.centos

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ RUN yum update -y && \
1010
yum install -y git-core zlib zlib-devel gcc-c++ patch readline readline-devel libffi-devel openssl-devel make bzip2 autoconf automake libtool bison curl sqlite-devel
1111

1212
RUN rm -rf /root/.rbenv/
13-
RUN git clone git://github.com/sstephenson/rbenv.git /root/.rbenv
13+
RUN git clone https://github.com/rbenv/rbenv.git /root/.rbenv
1414
ENV PATH="/root/.rbenv/bin:$PATH"
1515
RUN echo 'eval "$(rbenv init -)"' >> /root/.bashrc
16-
RUN git clone git://github.com/sstephenson/ruby-build.git /root/.rbenv/plugins/ruby-build
16+
RUN git clone https://github.com/rbenv/ruby-build.git /root/.rbenv/plugins/ruby-build
1717
RUN source /root/.bashrc
1818
RUN RUNTIME_VERSIONS=($(rbenv install -L | grep -oE $(echo "^${RUNTIME_VERSION}\.[0-9]+"))) && \
1919
RUNTIME_LATEST_VERSION=${RUNTIME_VERSIONS[-1]} && \

test/integration/docker/Dockerfile.echo.ubuntu

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ RUN apt-get update -y && \
1313

1414
RUN ln -sf /bin/bash /bin/sh
1515
RUN rm -rf /root/.rbenv/
16-
RUN git clone git://github.com/sstephenson/rbenv.git /root/.rbenv
16+
RUN git clone https://github.com/rbenv/rbenv.git /root/.rbenv
1717
ENV PATH="/root/.rbenv/bin:$PATH"
1818
RUN echo 'eval "$(rbenv init -)"' >> /root/.bashrc
19-
RUN git clone git://github.com/sstephenson/ruby-build.git /root/.rbenv/plugins/ruby-build
19+
RUN git clone https://github.com/rbenv/ruby-build.git /root/.rbenv/plugins/ruby-build
2020
RUN bash /root/.bashrc
2121

2222
RUN RUNTIME_VERSIONS=($(rbenv install -L | grep -oE $(echo "^${RUNTIME_VERSION}\.[0-9]+"))) && \

0 commit comments

Comments
 (0)