Files
vim-ale/ssh-authorize/install.sh
2023-06-11 08:27:13 +00:00

18 lines
301 B
Bash

#!/bin/sh
set -e
set -u
__install_ssh_authorize() {
my_cmd="ssh-authorize"
rm -f "$HOME/.local/bin/${my_cmd}"
webi_download \
"$WEBI_HOST/packages/${my_cmd}/${my_cmd}" \
"$HOME/.local/bin/${my_cmd}"
chmod a+x "$HOME/.local/bin/${my_cmd}"
}
__install_ssh_authorize