Skip to content

Commit

Permalink
リリースパッケージ生成時のコメントを変更
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuring committed Dec 1, 2024
1 parent d92b0b1 commit a70ba13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/baser-core/src/Command/CreateReleaseCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ public function execute(Arguments $args, ConsoleIo $io)
BcComposer::setup('', $packagePath);
$result = BcComposer::setupComposerForDistribution($version);
if($result['code'] === 0) {
$io->out(__d('baser_core', 'Composer による lock ファイルの更新に失敗アップデートが完了しました'));
$io->out(__d('baser_core', '- Composer による lock ファイルの更新が完了しました'));
} else {
$message = __d('baser_core', 'Composer による lock ファイルの更新に失敗しました。ログを確認してください。');
$message = __d('baser_core', '- Composer による lock ファイルの更新に失敗しました。ログを確認してください。');
$this->log($message);
$this->log(implode("\n", $result['out']));
$io->error($message);
Expand Down

0 comments on commit a70ba13

Please sign in to comment.