From aebaf459875b0fa1a62210b949422cd299dbb869 Mon Sep 17 00:00:00 2001 From: hophacker Date: Tue, 30 Jul 2019 11:44:40 +0800 Subject: [PATCH] install_tools, proxychains --- Rakefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Rakefile b/Rakefile index c8cb319..4f7a7bf 100644 --- a/Rakefile +++ b/Rakefile @@ -61,6 +61,18 @@ task :install_ycm do end end +task :install_tools do + if macos? + run %{ + brew install proxychains-ng + } + else + run %{ + apt install proxychains + } + end +end + desc 'Updates the installation' task :update do Rake::Task["vundle_migration"].execute if needs_migration_to_vundle?