From 04b620b9f449ccbd730087ebfe97d2ecc5f012c8 Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Fri, 17 Nov 2023 20:49:50 +0100 Subject: [PATCH] apparently nmap does not contain ncat Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com> --- .github/workflows/basic_cli_build_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/basic_cli_build_release.yml b/.github/workflows/basic_cli_build_release.yml index 631e0c8cdb..246b29222d 100644 --- a/.github/workflows/basic_cli_build_release.yml +++ b/.github/workflows/basic_cli_build_release.yml @@ -191,8 +191,8 @@ jobs: - name: Install expect for tests if we dont have it yet run: if ! dpkg -l | grep -qw expect; then sudo apt install -y expect; fi - - name: Install ncat (included with nmap) for tests if we dont have it yet - run: if ! dpkg -l | grep -qw nmap; then sudo apt install -y nmap; fi + - name: Install ncat for tests if we dont have it yet + run: if ! dpkg -l | grep -qw ncat; then sudo apt install -y ncat; fi - name: prep testing run: |