Skip to content

Commit afa2760

Browse files
committed
Additional message format cleanups.
1 parent ac9f93e commit afa2760

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

class.release.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,7 @@ public function update_files_to_svn() {
418418
public function confirm_commit() {
419419
echo PHP_EOL;
420420
echo "About to commit {$this->tag}. Double-check {$this->temp_dir} to make sure everything looks fine." . PHP_EOL;
421+
echo PHP_EOL;
421422
echo "Type 'YES' in all capitals and then return to continue." . PHP_EOL;
422423

423424
$fh = fopen( 'php://stdin', 'r' );
@@ -440,7 +441,7 @@ public function commit_svn_changes() {
440441
echo ' done!' . PHP_EOL;
441442

442443
if( ! $this->config_settings['svn-do-not-tag'] ) {
443-
echo 'Tagging SVN...' . PHP_EOL;
444+
echo 'Tagging SVN...';
444445

445446
exec( '"' . $this->config_settings['svn-path'] . 'svn" copy "' . $this->config_settings['svn-url'] . '/trunk" "' . $this->config_settings['svn-url'] . '/tags/' . $this->tag . '" -m "' . $this->config_settings['svn-tag-message'] . '"', $output, $result );
446447

0 commit comments

Comments
 (0)