We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d7bc0a commit 85b4658Copy full SHA for 85b4658
go
@@ -36,19 +36,19 @@ def_command :update_nav, 'Update the \'navigation:\' data in _config.yml' do
36
end
37
38
def_command :update_theme, 'Update the guides_style_18f gem' do
39
- exec({ 'RUBYOPT' => nil }, 'bundle', *%w(update --source guides_style_18f))
+ GuidesStyle18F.update_theme
40
41
42
def_command :update_gems, 'Update Ruby gems' do |gems|
43
update_gems gems
44
45
46
-def_command :serve, 'Serve the site at localhost:4000' do
47
- serve_jekyll
+def_command :serve, 'Serve the site at localhost:4000' do |args|
+ serve_jekyll args
48
49
50
-def_command :build, 'Build the site' do
51
- build_jekyll
+def_command :build, 'Build the site' do |args|
+ build_jekyll args
52
53
54
execute_command ARGV
0 commit comments