specklesystems / xUnitRevit

xUnit runner for Revit
https://speckle.systems/blog/xunitrevit/
MIT License
120 stars 44 forks source link

Update .gitmodules to use https url instead of ssh #29

Closed JamesDrummond closed 1 year ago

JamesDrummond commented 1 year ago

Can you change url of .gitmodules from git@github.com:specklesystems/speckle.xunit.runner.wpf.git to https://github.com/specklesystems/xUnitRevit.git? I got authentication issues trying to clone the repo using Github Desktop. I am sure I could figure out how to create and use a ssh public key but others will probably have similar issues trying to clone repo. Below is what the .gitmodules would change to.

Current

[submodule "speckle.xunit.runner.wpf"]
    path = speckle.xunit.runner.wpf
    url = git@github.com:specklesystems/speckle.xunit.runner.wpf.git

Suggested

[submodule "speckle.xunit.runner.wpf"]
    path = speckle.xunit.runner.wpf
    url = https://github.com/specklesystems/xUnitRevit.git
teocomi commented 1 year ago

Thanks for the report :) I found another solution that should be more universal, let me know if it works for you https://github.com/specklesystems/xUnitRevit/commit/fba1d1ce323b8326194f52480287d3a738ea7d3c

JamesDrummond commented 1 year ago

That works. Thanks.