From f0d0cbf947af3f1bc0fa2421a25cc5d4e0fdaea1 Mon Sep 17 00:00:00 2001 From: Carol Nichols Date: Sun, 27 Oct 2013 18:00:54 -0400 Subject: [PATCH] Referencing the documentation for jekyll-import installation Currently, there are only beta releases of the jekyll-import gem, so to install it, you have to do `gem install jekyll-import --pre`. Instead of giving instructions that don't work right now, reference the documentation. That way, this doesn't need to be updated again when jekyll-import has a non-beta version; just the documentation will need updating. --- bin/jekyll | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/jekyll b/bin/jekyll index 55af1b6a..50d10e3a 100755 --- a/bin/jekyll +++ b/bin/jekyll @@ -149,8 +149,7 @@ command :import do |c| require 'jekyll-import' rescue LoadError msg = "You must install the 'jekyll-import' gem before continuing.\n" - msg += "* Do this by running `gem install jekyll-import`.\n" - msg += "* Or if you need root privileges, run `sudo gem install jekyll-import`." + msg += "* Please see the documentation at http://jekyllrb.com/docs/migrations/ for instructions.\n" abort msg end Jekyll::Commands::Import.process(args.first, options)