diff options
| author | Felix Fietkau | 2025-07-22 08:38:18 +0000 |
|---|---|---|
| committer | Felix Fietkau | 2025-07-22 08:38:18 +0000 |
| commit | a95364b41d52bb6ae087c55788dda0e9efa3ba6d (patch) | |
| tree | 70318f227c645109947bd91d2f844914c724134a | |
| parent | 5d10084ea885b193bccd0f7da7137c1f5d766e58 (diff) | |
| download | udebug-a95364b41d52bb6ae087c55788dda0e9efa3ba6d.tar.gz | |
udebug-cli: fix terminating uloop
Signed-off-by: Felix Fietkau <nbd@nbd.name>
| -rwxr-xr-x | udebug-cli | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -237,7 +237,7 @@ let cmds = { } } - let done = () => { uloop.done(); }; + let done = () => { uloop.end(); }; signal('SIGINT', done); signal('SIGTERM', done); |