Skip to content

Commit

Permalink
Update ./go script
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Bland committed Oct 22, 2015
1 parent 1d7bc0a commit 85b4658
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions go
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@ def_command :update_nav, 'Update the \'navigation:\' data in _config.yml' do
end

def_command :update_theme, 'Update the guides_style_18f gem' do
exec({ 'RUBYOPT' => nil }, 'bundle', *%w(update --source guides_style_18f))
GuidesStyle18F.update_theme
end

def_command :update_gems, 'Update Ruby gems' do |gems|
update_gems gems
end

def_command :serve, 'Serve the site at localhost:4000' do
serve_jekyll
def_command :serve, 'Serve the site at localhost:4000' do |args|
serve_jekyll args
end

def_command :build, 'Build the site' do
build_jekyll
def_command :build, 'Build the site' do |args|
build_jekyll args
end

execute_command ARGV

0 comments on commit 85b4658

Please sign in to comment.