stakwork/sphinx-kotlin-ui

Solution for cloning submodule issue

Closed this issue · 1 comments

Issue

this only happens when you clone the sphinx-kotlin-ui repository through HTTPS rather than SSH
because in .gitmodule file the url equals git@github.com:stakwork/sphinx-kotlin-core.git which makes it ask for SSH public keys

Solution

  • in cloned project directory open .gitmodule file
  • swap url value from git@github.com:stakwork/sphinx-kotlin-core.git to https://github.com/stakwork/sphinx-kotlin-core.git
  • in terminal run git submodule sync and then run git submodule update --init
  • now build up gradle and it should work fine

image

Fix pushed to master