From a5148c6a51f3587c616e7d151890694a0bd3c1f0 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 9 Feb 2025 10:45:11 +0100 Subject: [PATCH] BugFix for example execution --- _examples_/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_examples_/Makefile b/_examples_/Makefile index 76234f0..adfe948 100644 --- a/_examples_/Makefile +++ b/_examples_/Makefile @@ -6,10 +6,12 @@ all: $(LOGFILES) %server.log: %server.py python3 $< > $@ & + sleep 1 # let the server come up python3 $(subst server,client,$<) 1> /dev/null %client.log: %client.py python3 $(subst client,server,$<) 1> /dev/null& + sleep 1 # let the server come up python3 $< > $@ clean: