Skip to content

Commit

Permalink
Merge pull request #63 from jcalonso/fix/commands-exit-code
Browse files Browse the repository at this point in the history
Fix return type of export commands
  • Loading branch information
kg-bot authored May 18, 2020
2 parents 9ac888b + be9321e commit 7fdcd2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Console/Commands/ExportMessages.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ public function handle()
$this->info('Messages exported to JavaScript file, you can find them at '.$filepath.DIRECTORY_SEPARATOR
.$filename);

return true;
return 0;
}
}
2 changes: 1 addition & 1 deletion src/Console/Commands/ExportMessagesToFlat.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ public function handle()
$this->info('Messages exported to JavaScript file, you can find them at '.$filepath.DIRECTORY_SEPARATOR
.$filename);

return true;
return 0;
}
}

0 comments on commit 7fdcd2e

Please sign in to comment.