Skip to content

Commit

Permalink
remove force for merge
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeMcDonnell committed Oct 29, 2022
1 parent a7c1f06 commit 78f3e31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tag-release
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ if($rebase) {
} else {
exec('git pull --ff-only', $output, $return);
}
if(!$force && $return !== 0) {
die("Failed merging origin. Use '--force' if you like chaos.");
if($return !== 0) {
die("Failed merging origin. Probably requires manual fix.");
}

$versionFile = 'VERSION';
Expand Down

0 comments on commit 78f3e31

Please sign in to comment.