Skip to content

Commit

Permalink
fix formatting of Morbo output
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 8, 2016
1 parent 1a1f107 commit 715d528
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Mojo/Server/Morbo.pm
Expand Up @@ -60,8 +60,8 @@ sub _manage {

if (my @files = @{$self->modified_files}) {
say @files == 1
? "File @{[$files[0]]} changed, restarting."
: "@{[scalar @files]} files changed, restarting."
? qq{File "@{[$files[0]]}" changed, restarting.}
: qq{@{[scalar @files]} files changed, restarting.}
if $ENV{MORBO_DEBUG};
kill 'TERM', $self->{worker} if $self->{worker};
$self->{modified} = 1;
Expand Down

0 comments on commit 715d528

Please sign in to comment.