From d5fb179012e36436a81761502948c91d44d21cc3 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 8 Dec 2025 22:29:41 +0900 Subject: cmd/hakurei: exec instead of fork/exec from shell There is no reason to keep the shell process around. Signed-off-by: Ophestra --- test/interactive/hakurei.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/interactive') diff --git a/test/interactive/hakurei.nix b/test/interactive/hakurei.nix index 96f014ce..eb24c7e7 100644 --- a/test/interactive/hakurei.nix +++ b/test/interactive/hakurei.nix @@ -37,7 +37,7 @@ path = "/bin/sh"; args = [ "-lc" - "sleep 1 && false" + "sleep 1 && exec false" ]; } ]; -- cgit v1.3.1