Added dbus to deps for FreeBSD

This commit is contained in:
veeso 2021-09-27 22:38:08 +02:00
parent c3e5663cf4
commit 6caf34b17a
2 changed files with 3 additions and 2 deletions

View File

@ -79,8 +79,9 @@ For more information or other platforms, please visit [veeso.github.io](https://
- **Linux** users:
- libssh
- libdbus-1
- **BSD** users:
- **FreeBSD** users:
- libssh
- dbus
### Optional Requirements ✔️

View File

@ -278,7 +278,7 @@ install_bsd_cargo_deps() {
set -e
confirm "${YELLOW}libssh, gcc${NO_COLOR} are required to install ${GREEN}termscp${NO_COLOR}; would you like to proceed?"
sudo="$(elevate_priv_ex /usr/local/bin)"
$sudo pkg install -y curl wget libssh gcc
$sudo pkg install -y curl wget libssh gcc dbus
info "Dependencies installed successfully"
}