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 using a config similar to that found in the README.md that leverages a Github repo via SSH (included at the bottom of the issue for reference), I am running into issues where tachometer attempts to install the dependency from the local file system. It seems that this stems from this code:
It appears to expect a protocol reference at the beginning of the repo value for the dependency, and when it doesn't fine one it assumes the dependency is local. Would a naive return on str.search('git@') === 0 be an acceptable addition to this logic? Or is there a better path forward for adding support for SSH here? Or am I missing something all together?
When using a config similar to that found in the README.md that leverages a Github repo via SSH (included at the bottom of the issue for reference), I am running into issues where tachometer attempts to install the dependency from the local file system. It seems that this stems from this code:
https://github.com/Polymer/tachometer/blob/2b296a0a0ab57ecbadc3c3625a499570fb5e0c83/src/versions.ts#L366-L380
It appears to expect a protocol reference at the beginning of the
repo
value for the dependency, and when it doesn't fine one it assumes the dependency is local. Would a naive return onstr.search('git@') === 0
be an acceptable addition to this logic? Or is there a better path forward for adding support for SSH here? Or am I missing something all together?Config Reference:
The text was updated successfully, but these errors were encountered: