-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error running make install for the first time #1
Comments
Thanks for pointing this out. Unfortunately, Here's what I get on my mac when I try to execute the command:
Links you might be interested in as you try to find a solution: |
Found the same thing in oh-my-zsh, I think this is a cleaner way. |
Here is my windows info, I append
after I change command like this: |
append this to the xargs command within the "makefile" file to fix it. result lines: |
Under Ubuntu, this is the error I got.
The problem is related to the kill part, as this is my first time, there is no PID and therefore, kill complains.
Fixed by adding -r to the xargs. According to the man page:
Do not run the command if there are no arguments. Normally the command is executed at least once even if there are no arguments.
The text was updated successfully, but these errors were encountered: