From 937ae9a60ff1dce3a7a05a530168a488420a63a7 Mon Sep 17 00:00:00 2001 From: JuneHyeon Bae Date: Mon, 9 Jun 2014 21:44:16 +0900 Subject: [PATCH] Fix raw github url --- config/deploy.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/deploy.rb b/config/deploy.rb index 040ddc4a3..1338a2193 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -46,8 +46,8 @@ namespace :local_config do desc "Initialize local config files" task :setup_local_files do - run "curl -s https://raw.github.com/r888888888/danbooru/master/script/install/danbooru_local_config.rb.templ > #{deploy_to}/shared/config/danbooru_local_config.rb" - run "curl -s https://raw.github.com/r888888888/danbooru/master/script/install/database.yml.templ > #{deploy_to}/shared/config/database.yml" + run "curl -s https://raw.githubusercontent.com/r888888888/danbooru/master/script/install/danbooru_local_config.rb.templ > #{deploy_to}/shared/config/danbooru_local_config.rb" + run "curl -s https://raw.githubusercontent.com/r888888888/danbooru/master/script/install/database.yml.templ > #{deploy_to}/shared/config/database.yml" end desc "Link the local config files"