summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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