shithub: hell

Download patch

ref: 7d1a10551f567003be765fff0e56a84a43423835
parent: edf1626779a26c2cea404735d9e42bcfe88eb359
author: penny <penny@limitedideas.org>
date: Thu Sep 25 12:10:26 EDT 2025

close readline when quitting

--- a/hellclient.go
+++ b/hellclient.go
@@ -100,6 +100,7 @@
 				if len(line) > 1 {
 					return nil, 0, true
 				}
+				hc.rl.Close()
 				os.Exit(0)
 			}
 			return nil, 0, false
--