Skip to content

Commit

Permalink
Remove NotImplementedError
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenning committed Oct 11, 2023
1 parent 0c73b79 commit 801aa04
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dev_tools/git_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,9 +542,8 @@ def main(args):
raise ValueError("FATAL tag {} already exists".format(tag_value))

assert get_branch_name(args) == "main"
## FIXME git merge command below does NOT merge anything...
raise NotImplementedError("git merge functionality is broken... it cannot merge the develop branch into main")

## FIXME git merge command below does NOT merge anything...
cmd = f"git merge {original_branch_name} -m '{args.message}'"
return_code, stdout, stderr = ciscoconfparse.ccp_util.run_this_posix_command(cmd)

Expand Down

0 comments on commit 801aa04

Please sign in to comment.