Swap netcat with netcat-traditional for debian-12-arm.sh

This commit is contained in:
Deda 2024-03-14 17:15:45 +01:00
parent 22b0d8ad9f
commit 8040757b73

View File

@ -46,7 +46,7 @@ MEMGRAPH_BUILD_DEPS=(
libpython3-dev python3-dev # for query modules
libssl-dev
libseccomp-dev
netcat # tests are using nc to wait for memgraph
netcat-traditional # tests are using nc to wait for memgraph
python3 virtualenv python3-virtualenv python3-pip # for qa, macro_benchmark and stress tests
python3-yaml # for the configuration generator
libcurl4-openssl-dev # mg-requests
@ -126,9 +126,6 @@ install() {
fi
continue
fi
if [ "$pkg" == netcat ]; then
apt install -y netcat-traditional
fi
apt install -y "$pkg"
done
}