From f6d7d2ae166cdb1665db1facca809962c038242d Mon Sep 17 00:00:00 2001 From: Terrtia Date: Tue, 2 Apr 2019 09:46:04 +0200 Subject: [PATCH] chg: [Update] add debug --- bin/Update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/Update.py b/bin/Update.py index f9cfbd9e..bfe60e01 100755 --- a/bin/Update.py +++ b/bin/Update.py @@ -195,8 +195,8 @@ def get_git_upper_tags_remote(current_tag, is_fork): def update_ail(current_tag, list_upper_tags_remote, current_version_path, is_fork): print('{}git checkout master:{}'.format(TERMINAL_YELLOW, TERMINAL_DEFAULT)) - process = subprocess.run(['git', 'checkout', 'master'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) - #process = subprocess.run(['ls'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) + #process = subprocess.run(['git', 'checkout', 'master'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) + process = subprocess.run(['ls'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) if process.returncode == 0: print(process.stdout.decode()) print()