From 3e9b91a2acea31f025b3025720068bc9d7a0bb41 Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Wed, 14 Aug 2024 21:49:32 -0700 Subject: [PATCH] setup.sh: fix macOS path specification (#33311) realpath and mac --- tools/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/setup.sh b/tools/setup.sh index 2dc114490..bc8e41a40 100755 --- a/tools/setup.sh +++ b/tools/setup.sh @@ -89,7 +89,7 @@ function ask_dir() { read if [[ ! -z "$REPLY" ]]; then mkdir -p $REPLY - OPENPILOT_ROOT="$(realpath $REPLY/openpilot)" + OPENPILOT_ROOT="$(realpath $REPLY)/openpilot" fi }