Skip to content

Commit c82fa95

Browse files
committed
bug fix in post-hook for github linking
1 parent 864f801 commit c82fa95

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hooks/post_gen_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def addremote(ctx):
5555
''' Adds a new remote to your git repo and pushes to Github '''
5656

5757
if GITUSER:
58-
ctx.run("git remote add origin https://github.com:{0}/{1}.git".format(GITUSER, REPONAME))
58+
ctx.run("git remote add origin https://github.com/{0}/{1}.git".format(GITUSER, REPONAME))
5959
try:
6060
print('Pushing to github ..')
6161
ctx.run("git push -u origin master")

0 commit comments

Comments
 (0)