From 10d4e023c8bffea21491c0981def72ec18204a32 Mon Sep 17 00:00:00 2001 From: Alfred Xing Date: Tue, 15 Jul 2014 17:05:59 -0700 Subject: [PATCH] Simpler way to install nokogiri with system extensions --- script/proof | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/script/proof b/script/proof index a6b2c634..627f1af3 100755 --- a/script/proof +++ b/script/proof @@ -10,8 +10,7 @@ fi echo "Site files have been changed, proofing" if ! [[ $(command -v htmlproof) ]]; then echo "Installing HTML::Proofer" - gem install nokogiri -- --use-system-libraries - gem install html-proofer + gem install html-proofer -- --use-system-libraries fi printf "\nGenerating site... "