diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-08 10:38:20 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-08 10:38:20 -0800 |
commit | a18e51fd61203067f9b4e58705545aa0b5fce537 (patch) | |
tree | cd33495eaa4f0235323e8cf59c60d006d3291306 /tools/util.py | |
parent | 1a876a70de5f8f498f8b1816e1d6220a669c339d (diff) |
build: Use target/ instead of out/ (#1153)
Diffstat (limited to 'tools/util.py')
-rw-r--r-- | tools/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |