From 7a0d9370e86e739461a628c822d7992ea450294f Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 18 Dec 2018 03:00:19 -0500 Subject: Load sccache from S3 on CI --- tools/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/setup.py') diff --git a/tools/setup.py b/tools/setup.py index 0df13e845..81ef548d6 100755 --- a/tools/setup.py +++ b/tools/setup.py @@ -114,7 +114,7 @@ def generate_gn_args(mode): out += os.environ["DENO_BUILD_ARGS"].split() # Check if ccache or sccache are in the path, and if so we set cc_wrapper. - cc_wrapper = find_executable("ccache") or find_executable("sccache") + cc_wrapper = find_executable("sccache") or find_executable("ccache") if cc_wrapper: # The gn toolchain does not shell escape cc_wrapper, so do it here. out += ['cc_wrapper=%s' % gn_string(shell_quote(cc_wrapper))] -- cgit v1.2.3