Skip to content

Commit

Permalink
guard should build moon with --verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
IceDragon200 committed Jul 3, 2015
1 parent 2fb01d1 commit ad45cf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module ::Guard

def do_tests
Guard::Notifier.notify 'Testing', title: 'moon', image: :pending
if exec_build('test')
if exec_build('--verbose', 'test')
Guard::Notifier.notify 'Tests Passed', title: 'moon', image: :success
true
else
Expand All @@ -19,7 +19,7 @@ module ::Guard

def do_build
Guard::Notifier.notify 'Building', title: 'moon', image: :pending
if exec_build('build')
if exec_build('--verbose', 'build')
Guard::Notifier.notify 'Build Successful', title: 'moon', image: :success
true
else
Expand Down

0 comments on commit ad45cf3

Please sign in to comment.