From a18e51fd61203067f9b4e58705545aa0b5fce537 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 8 Nov 2018 10:38:20 -0800 Subject: build: Use target/ instead of out/ (#1153) --- tools/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/util.py') diff --git a/tools/util.py b/tools/util.py index dd80ab4bd..8c126bd83 100644 --- a/tools/util.py +++ b/tools/util.py @@ -182,12 +182,12 @@ def build_mode(default="debug"): return default -# E.G. "out/debug" +# E.G. "target/debug" def build_path(): if "DENO_BUILD_PATH" in os.environ: return os.environ["DENO_BUILD_PATH"] else: - return os.path.join(root_path, "out", build_mode()) + return os.path.join(root_path, "target", build_mode()) # Returns True if the expected matches the actual output, allowing variation -- cgit v1.2.3