aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/interactive
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-12-08 22:29:41 +0900
committerOphestra <cat@gensokyo.uk>2025-12-08 22:29:41 +0900
commitd5fb179012e36436a81761502948c91d44d21cc3 (patch)
tree512f44f6bc8519aa4e4a4853c0419869ebaf2570 /test/interactive
parent462863e2908bf14d36f726a06bf22e9e1aceb7b5 (diff)
cmd/hakurei: exec instead of fork/exec from shell
There is no reason to keep the shell process around. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'test/interactive')
-rw-r--r--test/interactive/hakurei.nix2
1 files changed, 1 insertions, 1 deletions
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"
];
}
];