Files
vim-ale/ssh-setpass/install.sh

16 lines
320 B
Bash

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