diff options
Diffstat (limited to 'Library/Homebrew/utils/shell.rb')
| -rw-r--r-- | Library/Homebrew/utils/shell.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Homebrew/utils/shell.rb b/Library/Homebrew/utils/shell.rb index 7f749186f..302167d47 100644 --- a/Library/Homebrew/utils/shell.rb +++ b/Library/Homebrew/utils/shell.rb @@ -1,12 +1,12 @@ module Utils SHELL_PROFILE_MAP = { - :bash => "~/.bash_profile", - :csh => "~/.cshrc", - :fish => "~/.config/fish/config.fish", - :ksh => "~/.kshrc", - :sh => "~/.bash_profile", - :tcsh => "~/.tcshrc", - :zsh => "~/.zshrc", + bash: "~/.bash_profile", + csh: "~/.cshrc", + fish: "~/.config/fish/config.fish", + ksh: "~/.kshrc", + sh: "~/.bash_profile", + tcsh: "~/.tcshrc", + zsh: "~/.zshrc", }.freeze module Shell |
