Merge pull request #55 from costastf/master

install/bash: add more configuration files
This commit is contained in:
Eyal Posener 2017-12-19 13:11:28 +02:00 committed by GitHub
commit 6bee943216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ func Uninstall(cmd string) error {
}
func installers() (i []installer) {
for _, rc := range [...]string{".bashrc", ".bash_profile"} {
for _, rc := range [...]string{".bashrc", ".bash_profile", ".bash_login", ".profile"} {
if f := rcFile(rc); f != "" {
i = append(i, bash{f})
break