From 9cf398b74f51b4d7eb6838385b889fa013b6af76 Mon Sep 17 00:00:00 2001
From: Tavian Barnes <tavianator@tavianator.com>
Date: Sun, 18 Aug 2024 17:36:30 -0400
Subject: bench: Remove workaround for : in $PATH

---
 bench/bench.sh | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/bench/bench.sh b/bench/bench.sh
index cf1ae49..b6682a2 100644
--- a/bench/bench.sh
+++ b/bench/bench.sh
@@ -269,12 +269,7 @@ setup() {
             )
         done
 
-        # $SETUP_DIR contains `:` so it won't work in $PATH
-        # Work around this with a symlink
-        tmp=$(as-user mktemp)
-        as-user ln -sf "$bin" "$tmp"
-        defer rm "$tmp"
-        export PATH="$tmp:$PATH"
+        export PATH="$bin:$PATH"
     fi
 
     export_array BFS
-- 
cgit v1.2.3