From 5d1a1cc87ef5d7409fa81b27e86c0763d8ad0ff6 Mon Sep 17 00:00:00 2001 From: evazion Date: Mon, 2 Dec 2019 17:33:40 -0600 Subject: [PATCH] Change github repo url to https://github.com/danbooru/danbooru. The danbooru repo was moved to https://github.com/danbooru. --- INSTALL.debian | 6 +++--- app/logical/deviant_art_api_client.rb | 2 +- config/danbooru_default_config.rb | 2 +- config/deploy.rb | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/INSTALL.debian b/INSTALL.debian index 56d8bf6e6..9cc463bba 100644 --- a/INSTALL.debian +++ b/INSTALL.debian @@ -1,9 +1,9 @@ #!/bin/bash -# Run: curl -L -s https://raw.githubusercontent.com/r888888888/danbooru/master/INSTALL.debian -o install.sh ; chmod +x install.sh ; ./install.sh +# Run: curl -L -s https://raw.githubusercontent.com/danbooru/danbooru/master/INSTALL.debian -o install.sh ; chmod +x install.sh ; ./install.sh export RUBY_VERSION=2.6.3 -export GITHUB_INSTALL_SCRIPTS=https://raw.githubusercontent.com/r888888888/danbooru/master/script/install +export GITHUB_INSTALL_SCRIPTS=https://raw.githubusercontent.com/danbooru/danbooru/master/script/install export VIPS_VERSION=8.7.0 if [[ "$(whoami)" != "root" ]] ; then @@ -156,7 +156,7 @@ curl -L -s $GITHUB_INSTALL_SCRIPTS/database.yml.templ -o /var/www/danbooru2/shar curl -L -s $GITHUB_INSTALL_SCRIPTS/danbooru_local_config.rb.templ -o /var/www/danbooru2/shared/config/danbooru_local_config.rb echo "* Almost done! You are now ready to deploy Danbooru onto this server." -echo "* Log into Github and fork https://github.com/r888888888/danbooru into" +echo "* Log into Github and fork https://github.com/danbooru/danbooru into" echo "* your own repository. Clone your fork onto your local development" echo "* machine and modify the following files:" echo "*" diff --git a/app/logical/deviant_art_api_client.rb b/app/logical/deviant_art_api_client.rb index 9ecd50807..c1fe37ae8 100644 --- a/app/logical/deviant_art_api_client.rb +++ b/app/logical/deviant_art_api_client.rb @@ -1,4 +1,4 @@ -# https://github.com/r888888888/danbooru/issues/4144 +# https://github.com/danbooru/danbooru/issues/4144 # # API requests must send a user agent and must use gzip compression, otherwise # 403 errors will be returned. diff --git a/config/danbooru_default_config.rb b/config/danbooru_default_config.rb index 1ae56e338..3bb16642d 100644 --- a/config/danbooru_default_config.rb +++ b/config/danbooru_default_config.rb @@ -47,7 +47,7 @@ module Danbooru end def source_code_url - "https://github.com/r888888888/danbooru" + "https://github.com/danbooru/danbooru" end def commit_url(hash) diff --git a/config/deploy.rb b/config/deploy.rb index ea3d0cd27..f82a1b29f 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -1,7 +1,7 @@ set :stages, %w(production development staging) set :default_stage, "staging" set :application, "danbooru" -set :repo_url, "git://github.com/r888888888/danbooru.git" +set :repo_url, "git://github.com/danbooru/danbooru.git" set :deploy_to, "/var/www/danbooru2" append :linked_dirs, "log", "tmp/pids", "tmp/cache", "tmp/sockets", "vendor/bundle" set :branch, ENV.fetch("branch", "master")