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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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
}