diff options
| author | Mike McQuaid | 2016-09-17 15:32:44 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2016-09-17 16:14:13 +0100 |
| commit | 3982950e6106d45811a396a6a7478eeeee2817d7 (patch) | |
| tree | 3bc809f42e4356c89f4ff3508bbf0e84cd5d4d41 /Library/Homebrew/utils/shell.rb | |
| parent | 6693915399a5d9f1f09255c5008d2cc1209f7662 (diff) | |
| download | brew-3982950e6106d45811a396a6a7478eeeee2817d7.tar.bz2 | |
rubocop --auto-correct all hash-rocket usage.
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 |
