diff --git a/island/actions/islandAction_commit.py b/island/actions/islandAction_commit.py index f002953..117f4a2 100644 --- a/island/actions/islandAction_commit.py +++ b/island/actions/islandAction_commit.py @@ -83,6 +83,6 @@ def execute(arguments): debug.verbose("commit in project:") # fetch the repository cmd = "git commit " + argument_amend + argument_all + argument_message - debug.info("execute : " + cmd) - ##multiprocess.run_command_direct(cmd, cwd=git_repo_path) + debug.debug("execute : " + cmd) + multiprocess.run_command_direct(cmd, cwd=git_repo_path) diff --git a/island/actions/islandAction_push.py b/island/actions/islandAction_push.py index e736ceb..b9c250f 100644 --- a/island/actions/islandAction_push.py +++ b/island/actions/islandAction_push.py @@ -101,7 +101,7 @@ def execute(arguments): cmd += " " + argument_remote_name else: cmd += " " + elem.select_remote["name"] - cmd += " " + elem_branch + ":" + elem_branch - debug.verbose("execute : " + cmd) + cmd += " " + select_branch + ":" + select_branch + debug.info("execute : " + cmd) multiprocess.run_command_direct(cmd, cwd=git_repo_path)