setup.sh: fix macOS path specification (#33311)

realpath and mac
This commit is contained in:
Maxime Desroches
2024-08-14 21:49:32 -07:00
committed by GitHub
parent 424b657376
commit 3e9b91a2ac
+1 -1
View File
@@ -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
}