summaryrefslogtreecommitdiff
path: root/tools/setup.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-12-18 03:00:19 -0500
committerRyan Dahl <ry@tinyclouds.org>2018-12-18 15:15:08 -0500
commit7a0d9370e86e739461a628c822d7992ea450294f (patch)
tree283d010e92245efa0b3170e74b658d51fd6602d6 /tools/setup.py
parentb40326875cd9b3374fb8d02b14cf1bf588343abe (diff)
Load sccache from S3 on CI
Diffstat (limited to 'tools/setup.py')
-rwxr-xr-xtools/setup.py2
1 files changed, 1 insertions, 1 deletions
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))]