From 7eb2a7d1718f527e09c2b725023eaba0938a8034 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 12 Jun 2019 15:54:55 +0200 Subject: [PATCH] [DEV] update to status to use commands --- island/actions/islandAction_status.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/island/actions/islandAction_status.py b/island/actions/islandAction_status.py index 03c8989..65fd8ad 100644 --- a/island/actions/islandAction_status.py +++ b/island/actions/islandAction_status.py @@ -109,9 +109,7 @@ def execute(arguments): tags_comment = "" # check the current tags of the repository if argument_display_tag == True: - cmd = "git tag --points-at" - debug.verbose("execute : " + cmd) - ret_current_tags = multiprocess.run_command(cmd, cwd=git_repo_path)[1].split('\n') + ret_current_tags = commands.get_tags_current(git_repo_path) debug.verbose("tags found: " + str(ret_current_tags)) for elem_tag in ret_current_tags: if len(tags_comment) != 0: