app: create /usr/local/bin/ if it does not exist

This commit is contained in:
Jeffrey Morgan 2023-07-18 22:50:45 -07:00
parent 572fc9099f
commit 4c1dc52083

View file

@ -13,7 +13,9 @@ export function installed() {
}
export async function install() {
const command = `do shell script "ln -F -s ${ollama} ${symlinkPath}" with administrator privileges`
const command = `do shell script "mkdir -p ${path.dirname(
symlinkPath
)} && ln -F -s ${ollama} ${symlinkPath}" with administrator privileges`
try {
await exec(`osascript -e '${command}'`)