takama / daemon

A daemon package for use with Go (golang) services

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error: no such file or directory during installation on macOS Monterey

sithembiso opened this issue · comments

I had the error reported by a user of our service this morning.

Error: open /Users/<username>/Library/LaunchAgents/service.plist: no such file or directory

It looks like on macOS Monterey, the ~/Library/LaunchAgents directory does not exist. I can also see that we don't attempt to create it during installation here:

file, err := os.Create(srvPath)

I think we should always ensure that the directory exists before os.Create(). Am I mistaken? If not, I don't mind sending a PR.