aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Sébastien Pédron <[email protected]>2025-06-30 18:21:49 +0200
committerJean-Sébastien Pédron <[email protected]>2025-07-22 12:52:48 +0200
commita90161b8554bd694eebc8138a8c7de84797f2175 (patch)
treeb41e7441ffeaa89a1d263a7b0143ee98ec8bc107
parentd3e04e8e4fb609aed49e473602736ed437d1ba89 (diff)
downloaderlang.mk-a90161b8554bd694eebc8138a8c7de84797f2175.tar.gz
erlang.mk-a90161b8554bd694eebc8138a8c7de84797f2175.tar.bz2
erlang.mk-a90161b8554bd694eebc8138a8c7de84797f2175.zip
test/plugin_hex.mk: Use the name "nc" for the netcat command
This is the standard name and is available everywhere, unlike "netcat".
-rw-r--r--test/plugin_hex.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/plugin_hex.mk b/test/plugin_hex.mk
index 27060b6..26d3f94 100644
--- a/test/plugin_hex.mk
+++ b/test/plugin_hex.mk
@@ -10,7 +10,7 @@ hex_TARGETS = $(call list_targets,hex)
hex: $(hex_TARGETS)
-ifeq ($(shell netcat -z localhost 4000 && echo ok),ok)
+ifeq ($(shell nc -z localhost 4000 && echo ok),ok)
hex-user-create: init
$i "Bootstrap a new OTP application named $(APP)"