diff options
Diffstat (limited to 'tools/benchmark.py')
-rwxr-xr-x | tools/benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/benchmark.py b/tools/benchmark.py index 141e3b187..372258a93 100755 --- a/tools/benchmark.py +++ b/tools/benchmark.py @@ -201,8 +201,8 @@ def bundle_benchmark(deno_exe): for name, url in bundles.items(): # bundle - run([deno_exe, "bundle", url]) path = name + ".bundle.js" + run([deno_exe, "bundle", url, path]) # get size of bundle assert os.path.exists(path) sizes[name] = os.path.getsize(path) |