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
When running npm install the below error occurs when the build process attempts to clone the git submodules.
> @opentelemetry/[email protected] submodule /Users/simonl/Work/OpenTelemetry/opentelemetry-js/packages/opentelemetry-exporter-collector
> git submodule sync --recursive && git submodule update --init --recursive
Submodule 'packages/opentelemetry-exporter-collector/src/platform/node/protos' ([email protected]:open-telemetry/opentelemetry-proto.git) registered for path 'src/platform/node/protos'
Cloning into '/Users/simonl/Work/OpenTelemetry/opentelemetry-js/packages/opentelemetry-exporter-collector/src/platform/node/protos'...
Warning: Permanently added the RSA host key for IP address '13.237.44.5' to the list of known hosts.
[email protected]: 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 '[email protected]:open-telemetry/opentelemetry-proto.git' into submodule path '/Users/simonl/Work/OpenTelemetry/opentelemetry-js/packages/opentelemetry-exporter-collector/src/platform/node/protos' failed
Failed to clone 'packages/opentelemetry-exporter-collector/src/platform/node/protos'. Retry scheduled
Cloning into '/Users/simonl/Work/OpenTelemetry/opentelemetry-js/packages/opentelemetry-exporter-collector/src/platform/node/protos'...
[email protected]: 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 '[email protected]:open-telemetry/opentelemetry-proto.git' into submodule path '/Users/simonl/Work/OpenTelemetry/opentelemetry-js/packages/opentelemetry-exporter-collector/src/platform/node/protos' failed
Failed to clone 'packages/opentelemetry-exporter-collector/src/platform/node/protos' a second time, aborting
Updating the .gitmodules file to change the url to https and anonymous cloning and this works fine. Is the below an acceptable change, or should this be handled differently?
When running
npm install
the below error occurs when the build process attempts to clone the git submodules.Updating the
.gitmodules
file to change theurl
to https and anonymous cloning and this works fine. Is the below an acceptable change, or should this be handled differently?The text was updated successfully, but these errors were encountered: