Skip to content

Commit

Permalink
Fix git origin URL
Browse files Browse the repository at this point in the history
  • Loading branch information
eeintech committed Apr 11, 2023
1 parent bbcff3c commit 616ca4e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ def check_result(status: str, new_part: bool) -> bool:
# Check the current origin
proc = subprocess.Popen('git config --get remote.origin.url'.split(), stdout=subprocess.PIPE)
output, error = proc.communicate()
print(output)
ENABLE_API = output.decode('utf-8').replace('\n', '') == 'git@github.com:sparkmicro/Ki-nTree.git'
ENABLE_API = output.decode('utf-8').replace('\n', '') == 'https://github.com/sparkmicro/Ki-nTree'

if ENABLE_API:
# Disable Digi-Key API logging
Expand Down

0 comments on commit 616ca4e

Please sign in to comment.