From 6e8d5047d5b21af9ac64b15cca2cf5a327698075 Mon Sep 17 00:00:00 2001 From: Jadrie Date: Sun, 10 Apr 2022 00:36:09 -0400 Subject: [PATCH] Convert GIT paths to https See https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git --- INSTALL.debian | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.debian b/INSTALL.debian index 9b122f47e..b2b1f36a1 100644 --- a/INSTALL.debian +++ b/INSTALL.debian @@ -83,12 +83,12 @@ export PG_VERSION=`pg_config --version | egrep -o '[0-9]{1,}\.[0-9]{1,}[^-]'` # Install rbenv echo "* Installing rbenv..." cd /tmp -sudo -u danbooru git clone git://github.com/sstephenson/rbenv.git ~danbooru/.rbenv +sudo -u danbooru git clone https://github.com/sstephenson/rbenv.git ~danbooru/.rbenv sudo -u danbooru touch ~danbooru/.bash_profile echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~danbooru/.bash_profile echo 'eval "$(rbenv init -)"' >> ~danbooru/.bash_profile sudo -u danbooru mkdir -p ~danbooru/.rbenv/plugins -sudo -u danbooru git clone git://github.com/sstephenson/ruby-build.git ~danbooru/.rbenv/plugins/ruby-build +sudo -u danbooru git clone https://github.com/sstephenson/ruby-build.git ~danbooru/.rbenv/plugins/ruby-build sudo -u danbooru bash -l -c "RUBY_CONFIGURE_OPTS=--disable-install-doc rbenv install --verbose $RUBY_VERSION" sudo -u danbooru bash -l -c "rbenv global $RUBY_VERSION"