From 82f29bb627ab6e7839b53367c014b6e6ad70bd9c Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 31 Jan 2013 00:18:54 +0100 Subject: [PATCH] The jekyll-import gem provides Jekyll::Commands::Import, not Jekyll::Commands::Migrate. --- bin/jekyll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/jekyll b/bin/jekyll index 8c43e36b..6be36369 100755 --- a/bin/jekyll +++ b/bin/jekyll @@ -71,6 +71,6 @@ command :import do |c| puts "You must install the 'jekyll-import' gem before continuing." exit(-1) end - Jekyll::Commands::Migrate.process(args.first, options) + Jekyll::Commands::Import.process(args.first, options) end end