Fix canonical path

main
Sean Hickey 2021-09-06 21:57:33 -07:00
parent 7dad1b611c
commit 2d755b811b
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ mkdir -p $install_dir
path=$(dirname "$file")
filename=$(basename "$file")
canonical_path=$(cd $(dirname "$path") && pwd -P)
canonical_path=$(cd "$path" && pwd -P)
filepath="${canonical_path}/${filename}"
ln -sf "$filepath" "${install_dir}/${filename}"