summaryrefslogtreecommitdiff
path: root/install/root.go
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2017-05-06 22:06:49 +0300
committerEyal Posener <[email protected]>2017-05-06 22:15:15 +0300
commit703dd6ebc30f7c6f5a5c02e07a307e0e34d9c2c2 (patch)
tree6efd5f6d1205eb6188193c86f5dd1e256b8996c5 /install/root.go
parent9963a854946be0603f9e79ccba0a8b2688b20053 (diff)
improve docs
Diffstat (limited to 'install/root.go')
-rw-r--r--install/root.go29
1 files changed, 0 insertions, 29 deletions
diff --git a/install/root.go b/install/root.go
deleted file mode 100644
index 66e23b3..0000000
--- a/install/root.go
+++ /dev/null
@@ -1,29 +0,0 @@
-package install
-
-import "os"
-
-type root struct{}
-
-func (r root) Install(cmd string, bin string) error {
- completeLink := getBashCompletionDLink(cmd)
- err := r.Uninstall(cmd, bin)
- if err != nil {
- return err
- }
- return os.Symlink(bin, completeLink)
-}
-
-func (root) Uninstall(cmd string, bin string) error {
- completeLink := getBashCompletionDLink(cmd)
- if _, err := os.Stat(completeLink); err == nil {
- err := os.Remove(completeLink)
- if err != nil {
- return err
- }
- }
- return nil
-}
-
-func getBashCompletionDLink(cmd string) string {
- return "/etc/bash_completion.d/" + cmd
-}