MCPcopy Create free account
hub / github.com/github/copilot-sdk / _should_skip_download

Function _should_skip_download

python/copilot/_cli_download.py:109–112  ·  view source on GitHub ↗

Check if auto-download is disabled via environment variable.

()

Source from the content-addressed store, hash-verified

107
108
109def _should_skip_download() -> bool:
110 """Check if auto-download is disabled via environment variable."""
111 val = os.environ.get("COPILOT_SKIP_CLI_DOWNLOAD", "").lower()
112 return val in ("1", "true", "yes")
113
114
115def _fetch_checksums(version: str) -> dict[str, str]:

Callers 1

get_or_download_cliFunction · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…