summaryrefslogtreecommitdiff
path: root/cmd/install/install.go
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2017-12-19 13:11:28 +0200
committerGitHub <[email protected]>2017-12-19 13:11:28 +0200
commit6bee943216c8cea4cc983c8596346d8945279a1f (patch)
tree2a29ef7bbb891640c65184c48c19f7aa5b8559e8 /cmd/install/install.go
parentdc2bc5a81accba8782bebea28628224643a8286a (diff)
parent3682ca65e09d6e2c9c516e53868befa4a0448fd8 (diff)
Merge pull request #55 from costastf/master
install/bash: add more configuration files
Diffstat (limited to 'cmd/install/install.go')
-rw-r--r--cmd/install/install.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/install/install.go b/cmd/install/install.go
index 644b405..082a226 100644
--- a/cmd/install/install.go
+++ b/cmd/install/install.go
@@ -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