We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e5da2ba + 0fe0ed6 commit b014d65Copy full SHA for b014d65
1 file changed
circuitpython_build_tools/scripts/build_bundles.py
@@ -91,7 +91,9 @@ def build_bundle(libs, bundle_version, output_filename, package_folder_prefix,
91
for line in versions.stdout.split(b"\n"):
92
if not line:
93
continue
94
- if line.startswith(b"git@"):
+ if line.startswith(b"ssh://git@"):
95
+ repo = b"https://" + line.split(b"@")[1][:-len(".git")]
96
+ elif line.startswith(b"git@"):
97
repo = b"https://github.com/" + line.split(b":")[1][:-len(".git")]
98
elif line.startswith(b"https:"):
99
repo = line.strip()[:-len(".git")]
0 commit comments