Hi, I have an issue with cloning the project repository.
I tried my Windows machine and Virtual Ubuntu. Result is the same.
It seems like the SDK submodule is set with SSH (not HTTPS) path but I’m not sure. Can you help me please?
[ec2-user@ip-ip bigclown]$ git clone https://github.com/bigclownlabs/bc-core-module.git
Cloning into 'bc-core-module'...
remote: Counting objects: 85, done.
remote: Compressing objects: 100% (32/32), done.
remote: Total 85 (delta 16), reused 0 (delta 0), pack-reused 49
Unpacking objects: 100% (85/85), done.
Checking connectivity... done.
[ec2-user@ip-ip bigclown]$ cd bc-core-module/
[ec2-user@ip-ip bc-core-module]$ make update
Initializing Git submodules...
Submodule 'sdk' (git@github.com:bigclownlabs/bc-core-module-sdk.git) registered for path 'sdk'
Cloning into 'sdk'...
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
fatal: clone of 'git@github.com:bigclownlabs/bc-core-module-sdk.git' into submodule path 'sdk' failed
make: *** [sdk] Error 128
I think the issue is with that
url = git@github.com:bigclownlabs/bc-core-module-sdk.git
is the SSH path and not HTTPS, but I’m not sure.
it’s on the last line in my first post.
thanks
osboxes@osboxes:~/bc-core-module$ git clone --recursive https://github.com/bigclownlabs/bc-core-module.git
Cloning into ‘bc-core-module’…
remote: Counting objects: 85, done.
remote: Compressing objects: 100% (32/32), done.
remote: Total 85 (delta 16), reused 0 (delta 0), pack-reused 49
Unpacking objects: 100% (85/85), done.
Checking connectivity… done.
Submodule ‘sdk’ (git@github.com:bigclownlabs/bc-core-module-sdk.git) registered for path 'sdk’
Cloning into ‘sdk’…
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
fatal: clone of ‘git@github.com:bigclownlabs/bc-core-module-sdk.git’ into submodule path ‘sdk’ failed