You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The scm url field in conanfile.py is set to: "url": "[email protected]:open-simulation-platform/libcosimc.git". Conan files relying on the scm url to fetch the package will give the error ERROR: Couldn't checkout SCM: Command 'git -c http.sslVerify=true clone "[email protected]:open-simulation-platform/libcosimc.git". This field is set to "auto" for most other repos. This can be reproduced by using the conan command specified in the cosim-demo-app with --build=missing.
The text was updated successfully, but these errors were encountered:
I reproduced it as well. I suspect this will happen if you lack write access to the repo when Conan tries to checkout with the SSH URL. Suggested fix: use the HTTPS url instead, or auto if that works. SSH should not be required for checkout.
The scm url field in
conanfile.py
is set to:"url": "[email protected]:open-simulation-platform/libcosimc.git"
. Conan files relying on the scm url to fetch the package will give the errorERROR: Couldn't checkout SCM: Command 'git -c http.sslVerify=true clone "[email protected]:open-simulation-platform/libcosimc.git"
. This field is set to"auto"
for most other repos. This can be reproduced by using the conan command specified in the cosim-demo-app with--build=missing
.The text was updated successfully, but these errors were encountered: