forked from Homebrew/legacy-homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
Common Issues
jacknagel edited this page Sep 16, 2011
·
22 revisions
This is a list of commonly encountered problems, known issues, and their solutions.
After running brew update
, you receive a git error warning about untracked files or local changes that would be overwritten by a checkout or merge, followed by a list of files inside your Homebrew installation.
This is caused by an old bug in in the update
code that has long since been fixed. However, the nature of the bug requires that you do the following:
cd $(brew --prefix)
git reset --hard FETCH_HEAD
When trying to load a plist file into launchctl, you receive an error that resembles
Bug: launchctl.c:2325 (23930):13: (dbfd = open(g_job_overrides_db_path, [...]
launch_msg(): Socket is not connected
In all likelihood this is because you are using iTerm. The solution is to use Terminal.app when interacting with launchctl
.