From 20b69cb63d3fb3602c5a2b387c517350051471d7 Mon Sep 17 00:00:00 2001 From: bol-van Date: Mon, 16 Jun 2025 07:15:08 +0300 Subject: [PATCH] install_bin: minor improve help text --- install_bin.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install_bin.sh b/install_bin.sh index 950c414d..6afc9793 100755 --- a/install_bin.sh +++ b/install_bin.sh @@ -136,6 +136,7 @@ if [ ! -d "$BINDIR" ] || ! dir_is_not_empty "$BINDIR" ]; then Linux) echo "you need to download release from github or build binaries from source" echo "building from source requires debian/ubuntu packages : make gcc zlib1g-dev libcap-dev libnetfilter-queue-dev libmnl-dev libsystemd-dev" + echo "libsystemd-dev required only on systemd based systems" echo "on distributions with other package manager find dev package analogs" echo "to compile on systems with systemd : make systemd" echo "to compile on other systems : make" @@ -156,9 +157,6 @@ if [ ! -d "$BINDIR" ] || ! dir_is_not_empty "$BINDIR" ]; then echo "to compile : read docs" echo "to make things easier use zapret-win-bundle" ;; - *) - echo "to compile : make" - ;; esac exit 1 fi