summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau2025-07-22 08:38:18 +0000
committerFelix Fietkau2025-07-22 08:38:18 +0000
commita95364b41d52bb6ae087c55788dda0e9efa3ba6d (patch)
tree70318f227c645109947bd91d2f844914c724134a
parent5d10084ea885b193bccd0f7da7137c1f5d766e58 (diff)
downloadudebug-a95364b41d52bb6ae087c55788dda0e9efa3ba6d.tar.gz
udebug-cli: fix terminating uloop
Signed-off-by: Felix Fietkau <nbd@nbd.name>
-rwxr-xr-xudebug-cli2
1 files changed, 1 insertions, 1 deletions
diff --git a/udebug-cli b/udebug-cli
index 0fbf3a0..72adc91 100755
--- a/udebug-cli
+++ b/udebug-cli
@@ -237,7 +237,7 @@ let cmds = {
}
}
- let done = () => { uloop.done(); };
+ let done = () => { uloop.end(); };
signal('SIGINT', done);
signal('SIGTERM', done);