Skip to content

Commit

Permalink
Stop hardcoding origin url
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonQiu21 committed Oct 8, 2023
1 parent be51b30 commit 976436c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frieren-cli/frieren-cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

recommended_issue_labels = list(set(map(lambda x: x.strip(), input("Input any tag/label that would be a good first issue separated by a comma (','):").split(","))))

fern = {"name": re.search(r"/([^/]*/[^/]*)$","https://github.com/g00gol/frieren").group(1), "technologies": technologies, "difficulty": difficulty, "description": desc, "recommended_issue_labels": recommended_issue_labels}
fern = {"name": re.search(r"/([^/]*/[^/]*)$",origin).group(1), "technologies": technologies, "difficulty": difficulty, "description": desc, "recommended_issue_labels": recommended_issue_labels}

fern['repo_origin'] = origin
fern['fern_branch'] = repo.active_branch.name
Expand Down

0 comments on commit 976436c

Please sign in to comment.