[oh-my-zsh] Insecure completion-dependent directories detected の解決方法

oh-my-zsh で Insecure completion-dependent directories detected のメッセージが出たときの解決方法をご紹介します。

oh-my-zsh

前提 oh-my-zsh プラグインを利用している

oh-my-zsh インストール、設定 をしている前提とします。

Insecure completion-dependent directories detected

エラーメッセージ

Last login: Thu Apr  9 23:44:29 on ttys003
[oh-my-zsh] Insecure completion-dependent directories detected:
drwxrwxr-x  3 tadashi_shigeoka  admin   96  4  9 23:35 /usr/local/share/zsh
drwxrwxr-x  4 tadashi_shigeoka  admin  128  4  9 23:38 /usr/local/share/zsh/site-functions

[oh-my-zsh] For safety, we will not load completions from these directories until
[oh-my-zsh] you fix their permissions and ownership and restart zsh.
[oh-my-zsh] See the above list for directories with group or other writability.

[oh-my-zsh] To fix your permissions you can do so by disabling
[oh-my-zsh] the write permission of "group" and "others" and making sure that the
[oh-my-zsh] owner of these directories is either root or your current user.
[oh-my-zsh] The following command may help:
[oh-my-zsh]     compaudit | xargs chmod g-w,o-w

[oh-my-zsh] If the above didn't help or you want to skip the verification of
[oh-my-zsh] insecure directories you can set the variable ZSH_DISABLE_COMPFIX to
[oh-my-zsh] "true" before oh-my-zsh is sourced in your zshrc file.

compdef: unknown command or service: rails

解決方法 chmod 755

chmod 755 /usr/local/share/zsh
chmod 755 /usr/local/share/zsh/site-functions

以上、oh-my-zsh で Insecure completion-dependent directories detected を解決した、現場からお送りしました。

参考情報