mirror of
https://github.com/denoland/deno.git
synced 2025-09-30 22:21:15 +00:00
tools/setup: don't download sccache if --no-binary-download is passed
This commit is contained in:
parent
15dadf812c
commit
0e780e8948
2 changed files with 11 additions and 11 deletions
|
@ -18,23 +18,22 @@ def download_prebuilt(sha1_file):
|
|||
env=google_env())
|
||||
|
||||
|
||||
def load_sccache():
|
||||
def get_platform_path(tool):
|
||||
if sys.platform == 'win32':
|
||||
p = "prebuilt/win/sccache.exe"
|
||||
return "prebuilt/win/" + tool + ".exe"
|
||||
elif sys.platform.startswith('linux'):
|
||||
p = "prebuilt/linux64/sccache"
|
||||
return "prebuilt/linux64/" + tool
|
||||
elif sys.platform == 'darwin':
|
||||
p = "prebuilt/mac/sccache"
|
||||
return "prebuilt/mac/" + tool
|
||||
|
||||
|
||||
def load_sccache():
|
||||
p = get_platform_path("sccache")
|
||||
download_prebuilt(p + ".sha1")
|
||||
return os.path.join(root_path, p)
|
||||
|
||||
|
||||
def load_hyperfine():
|
||||
if sys.platform == 'win32':
|
||||
p = "prebuilt/win/hyperfine.exe"
|
||||
elif sys.platform.startswith('linux'):
|
||||
p = "prebuilt/linux64/hyperfine"
|
||||
elif sys.platform == 'darwin':
|
||||
p = "prebuilt/mac/hyperfine"
|
||||
p = get_platform_path("hyperfine")
|
||||
download_prebuilt(p + ".sha1")
|
||||
return os.path.join(root_path, p)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue