Skip to content

Commit

Permalink
fix command line error
Browse files Browse the repository at this point in the history
  • Loading branch information
benbalter committed Feb 16, 2015
1 parent 6872a8d commit ed10ac3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bin/jekyll-auth
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
require 'mercenary'
require 'jekyll-auth'
require 'open3'
require 'jekyll-auth'

Mercenary.program("jekyll-auth") do |p|
p.version JekyllAuth::VERSION
Expand Down Expand Up @@ -89,7 +90,7 @@ Mercenary.program("jekyll-auth") do |p|

puts "Spinning up the server with authentication. Use CTRL-C to stop."
puts "To preview the site without authentication, use the `jekyll serve` command"
execute_command "bundle", "exec", "rackup", "-p", "4000"
JekyllAuth::Commands.execute_command "bundle", "exec", "rackup", "-p", "4000"

end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/jekyll_auth/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class JekyllAuth
VERSION = '1.0.1'
VERSION = '1.0.2'
end

0 comments on commit ed10ac3

Please sign in to comment.