From 72741ff81280a19c728cbc151f8b3b083220130e Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 9 Feb 2025 10:59:29 +0100 Subject: [PATCH] BugFix for example execution --- _examples_/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_examples_/Makefile b/_examples_/Makefile index adfe948..3d8dcb6 100644 --- a/_examples_/Makefile +++ b/_examples_/Makefile @@ -8,11 +8,13 @@ all: $(LOGFILES) python3 $< > $@ & sleep 1 # let the server come up python3 $(subst server,client,$<) 1> /dev/null + sleep 1 # let the server come down %client.log: %client.py python3 $(subst client,server,$<) 1> /dev/null& sleep 1 # let the server come up python3 $< > $@ + sleep 1 # let the server come down clean: @echo "\e[1m * Example logs...\e[0m"