about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAspen Smith <root@gws.fyi>2023-12-14T19·48-0500
committerclbot <clbot@tvl.fyi>2023-12-14T19·52+0000
commit91b6c13f90bc25f581e0f8c92d0d9f358500d960 (patch)
treefa2706870fb7a895a69307b4249992cfe92b99eb
parent1d678bab5f760b9141feefeacf4a27f72ae1adbd (diff)
fix(tvix): Remove errant backslash in benchmark script r/7221
Change-Id: I485986521fd4a25770f2a398896a0f672628df9f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10365
Tested-by: BuildkiteCI
Autosubmit: grfn <grfn@gws.fyi>
Reviewed-by: grfn <grfn@gws.fyi>
-rwxr-xr-xtvix/scripts/bench-windtunnel.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/scripts/bench-windtunnel.sh b/tvix/scripts/bench-windtunnel.sh
index 894d5ba97e..396357ebca 100755
--- a/tvix/scripts/bench-windtunnel.sh
+++ b/tvix/scripts/bench-windtunnel.sh
@@ -22,6 +22,6 @@ hyperfine --export-json ./results.json \
     -n 'tvix-eval-depot-nixpkgs-hello' "target/release/tvix -E '(import ${depot_nixpkgs_path} {}).hello.outPath'" \
     -n 'tvix-eval-depot-nixpkgs-cross-hello' "target/release/tvix -E '(import ${depot_nixpkgs_path} {}).pkgsCross.aarch64-multiplatform.hello.outPath'" \
     -n 'tvix-eval-pinned-nixpkgs-hello' "target/release/tvix -E '(import ${pinned_nixpkgs_path} {}).hello.outPath'" \
-    -n 'tvix-eval-pinned-nixpkgs-cross-hello' "target/release/tvix -E '(import ${pinned_nixpkgs_path} {}).pkgsCross.aarch64-multiplatform.hello.outPath'" \
+    -n 'tvix-eval-pinned-nixpkgs-cross-hello' "target/release/tvix -E '(import ${pinned_nixpkgs_path} {}).pkgsCross.aarch64-multiplatform.hello.outPath'"
 windtunnel-cli report -f hyperfine-json ./results.json
 popd