We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
git_lfs_probe.py
1 parent fd31e6d commit 8f45151Copy full SHA for 8f45151
misc/bazel/internal/git_lfs_probe.py
@@ -213,5 +213,12 @@ def get_lfs_object(path):
213
for resp in get_locations(objects):
214
print(resp)
215
except NoEndpointsFound as e:
216
- print(f"ERROR: no valid endpoints found", file=sys.stderr)
+ print("""\
217
+ERROR: no valid endpoints found, your git authentication method might be currently unsupported by this script.
218
+You can bypass this error by running from semmle-code (this might take a while):
219
+ git config lfs.fetchexclude ""
220
+ git -C ql config lfs.fetchinclude \\*
221
+ git lfs fetch && git lfs checkout
222
+ cd ql
223
+ git lfs fetch && git lfs checkout""", file=sys.stderr)
224
sys.exit(1)
0 commit comments