diff --git a/execute.py b/execute.py index ef5f226..02da871 100755 --- a/execute.py +++ b/execute.py @@ -34,6 +34,11 @@ print(cmd) result = os.popen(cmd) print(result.read()) +cmd = 'git config list --global' +print(cmd) +result = os.popen(cmd) +print(result.read()) + cmd = 'git clone ' + \ GITHUB_SERVER_URL + '/' + \ GITHUB_REPOSITORY + ' ' + os.getcwd()