aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2017-09-18 21:04:04 +0200
committerKarel Kočí <cynerd@email.cz>2017-09-18 21:04:04 +0200
commit39da53ab62b710a231cef8cea50bfa316816f2ad (patch)
tree013b95275afb91d4f8e575f5cf942f3429a61789 /install
parent04029c520f4cd1c7fbf9444e6ba5304b632d23f4 (diff)
downloadmyconfigs-39da53ab62b710a231cef8cea50bfa316816f2ad.tar.gz
myconfigs-39da53ab62b710a231cef8cea50bfa316816f2ad.tar.bz2
myconfigs-39da53ab62b710a231cef8cea50bfa316816f2ad.zip
Add completions for usbkey
Diffstat (limited to 'install')
-rwxr-xr-xinstall4
1 files changed, 4 insertions, 0 deletions
diff --git a/install b/install
index c6b769e..549f63f 100755
--- a/install
+++ b/install
@@ -22,12 +22,14 @@ if ask "Install Bashrc"; then
inst bashrc ~/.bashrc
inst shellrc ~/.shellrc
inst profile ~/.profile
+ mkdir -p ~/.bash_completions
fi
if ask "Install zshrc"; then
inst zshrc ~/.zshrc
inst shellrc ~/.shellrc
inst zprofile ~/.zprofile
+ mkdir -p ~/.zsh_completions
fi
if ask "Install GIT configuration"; then
@@ -117,4 +119,6 @@ fi
if ask "Install usbkey script"; then
inst local/bin/usbkey ~/.local/bin/usbkey
+ inst zsh_completions/usbkey ~/.zsh_completions/_usbkey
+ inst bash_completions/usbkey ~/.bash_completions/usbkey
fi